Skip to content
Prev Previous commit
Next Next commit
Update error message
Signed-off-by: Christopher Ng <[email protected]>
  • Loading branch information
Pytal committed Jun 10, 2022
commit 867933b8590a918893e5bd443506abd0595c4d50
2 changes: 1 addition & 1 deletion lib/Service/UserMigrationService.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public function checkExportability(IUser $user, ?array $filteredMigratorList = n

$freeSpaceAfterExport = $freeSpace - $exportSize;
if ($freeSpaceAfterExport < 0) {
throw new NotExportableException('Insufficient storage space available to export, please free up ' . (int)abs($freeSpaceAfterExport) . ' KiB or more to be able to export your data');
throw new NotExportableException('Insufficient storage space available, please free up ' . (int)abs($freeSpaceAfterExport) . ' KiB or more to be able to export your data');
}
}

Expand Down