Skip to content
Merged
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
fix: Stop infinite loop in ExpireTrash
Signed-off-by: Marcel Müller <[email protected]>
  • Loading branch information
SystemKeeper authored and backportbot[bot] committed Sep 25, 2025
commit b27cbdba35708893c16891635b5a75de14a28022
1 change: 1 addition & 0 deletions apps/files_trashbin/lib/BackgroundJob/ExpireTrash.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ protected function run($argument) {
// If the last batch was not full it means that we reached the end of the user list.
if ($count < self::USER_BATCH_SIZE) {
$this->resetOffset();
break;
}
}
}
Expand Down
Loading