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 e65a17224d0df2360cfa0a3a8fb69ce5cb6f51f8
2 changes: 1 addition & 1 deletion lib/Service/UserMigrationService.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public function checkExportability(IUser $user, ?array $filteredMigratorList = n
$userFolder = $this->root->getUserFolder($user->getUID());
$freeSpace = (int)ceil($userFolder->getFreeSpace() / 1024);
} catch (Throwable $e) {
throw new NotExportableException('Error calculating amount of free space available');
throw new NotExportableException('Error calculating amount of free storage space available');
}

try {
Expand Down