Skip to content
Snippets Groups Projects
Commit f0f1e2c5 authored by Roeland Jago Douma's avatar Roeland Jago Douma Committed by GitHub
Browse files

Merge pull request #5770 from nextcloud/path-repair-steps-loop

Fix invalid path repair step not getting all invalid entries
parents 884751a8 8b58b4c2
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