Skip to content
Prev Previous commit
Next Next commit
Update error message
Signed-off-by: Christopher Ng <[email protected]>
(cherry picked from commit e65a172)
  • Loading branch information
Pytal committed Jun 10, 2022
commit c934b9c408c8085c832cbc6c15d710518ed0a26e
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