diff --git a/lib/Service/Importer/BoardImportService.php b/lib/Service/Importer/BoardImportService.php index dcd0bbc0c..ba08c7a93 100644 --- a/lib/Service/Importer/BoardImportService.php +++ b/lib/Service/Importer/BoardImportService.php @@ -117,7 +117,6 @@ class BoardImportService { $this->importComments(); $this->importCardAssignments(); } catch (\Throwable $th) { - throw $th; throw new BadRequestException($th->getMessage()); } } diff --git a/lib/Service/Importer/Systems/DeckJsonService.php b/lib/Service/Importer/Systems/DeckJsonService.php index 57caff6c7..37c99ec11 100644 --- a/lib/Service/Importer/Systems/DeckJsonService.php +++ b/lib/Service/Importer/Systems/DeckJsonService.php @@ -216,6 +216,8 @@ class DeckJsonService extends ABoardImportService { $acl->setPermissionEdit(false); $acl->setPermissionShare(false); $acl->setPermissionManage(false); + // FIXME: Figure out a way to collect and aggregate warnings about users + // FIXME: Maybe have a dry run? $return[] = $acl; } return $return;