Merge pull request #5770 from nextcloud/path-repair-steps-loop
Fix invalid path repair step not getting all invalid entries
This commit is contained in:
commit
f0f1e2c501
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