Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion apps/files_sharing/appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ Turning the feature off removes shared files and folders on the server for all s
<job>OCA\Files_Sharing\ExpireSharesJob</job>
<job>OCA\Files_Sharing\SharesReminderJob</job>
<job>OCA\Files_Sharing\BackgroundJob\FederatedSharesDiscoverJob</job>
<job>OCA\Files_Sharing\BackgroundJob\ExternalShareScanJob</job>
</background-jobs>

<repair-steps>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ protected function run($argument): void {
}

[$userId, $path] = $argument;
if ($userId === null || $userId === '') {
return;
}

try {
$this->rootFolder
->getUserFolder($userId)
Expand Down
Loading