Skip to content
Snippets Groups Projects
Unverified Commit 8b58b4c2 authored by Robin Appelman's avatar Robin Appelman
Browse files

Fix invalid path repair step not getting all invalid entries


Signed-off-by: default avatarRobin Appelman <robin@icewind.nl>
parent 1ac6eae7
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment