mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 22:27:31 -04:00
Fix invalid path repair step not getting all invalid entries
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
1ac6eae7d5
commit
8b58b4c2a7
1 changed files with 1 additions and 1 deletions
|
|
@ -76,7 +76,7 @@ class RepairInvalidPaths implements IRepairStep {
|
|||
yield $row;
|
||||
}
|
||||
$result->closeCursor();
|
||||
} while (count($rows) >= self::MAX_ROWS);
|
||||
} while (count($rows) > 0);
|
||||
}
|
||||
|
||||
private function getId($storage, $path) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue