diff --git a/library/Director/Import/Sync.php b/library/Director/Import/Sync.php index 0c03f5ce..06a3d21b 100644 --- a/library/Director/Import/Sync.php +++ b/library/Director/Import/Sync.php @@ -749,17 +749,7 @@ class Sync if ($object->hasBeenModified()) { $existing = $object->hasBeenLoadedFromDb(); - - try { - $object->store($db); - } catch (Exception $e) { - if ($this->singleObjectsAreAllowedToFail()) { - $failed++; - continue; - } else { - throw $e; - } - } + $object->store($db); if ($existing) { $modified++;