Fix invalid path repair step not getting all invalid entries
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
041e327a6c
commit
c17b07667e
|
@ -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 New Issue