You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -423,17 +432,17 @@ public function import(IUser $user, IImportSource $importSource, OutputInterface
423
432
VObjectReader::OPTION_FORGIVING,
424
433
);
425
434
} catch (Throwable$e) {
426
-
thrownewCalendarMigratorException("Failed to read file:\"$importPath\"", 0, $e);
435
+
thrownewCalendarMigratorException("Failed to read file \"$importPath\"", 0, $e);
427
436
}
428
437
429
438
$problems = $vCalendar->validate();
430
439
if (!empty($problems)) {
431
-
thrownewCalendarMigratorException("Invalid calendar data contained in:\"$importPath\"");
440
+
thrownewCalendarMigratorException("Invalid calendar data contained in \"$importPath\"");
432
441
}
433
442
434
443
$splitFilename = explode('_', $filename, 2);
435
444
if (count($splitFilename) !== 2) {
436
-
thrownewCalendarMigratorException("Invalid filename:\"$filename\", expected filename of the format:\"<calendar_name>_YYYY-MM-DD" . CalendarMigrator::FILENAME_EXT . '"');
445
+
thrownewCalendarMigratorException("Invalid filename \"$filename\", expected filename of the format \"<calendar_name>_YYYY-MM-DD" . CalendarMigrator::FILENAME_EXT . '"');
0 commit comments