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

Fix invalid path repair step not getting all invalid entries
pull/5778/head
Roeland Jago Douma 7 years ago committed by GitHub
commit f0f1e2c501

@ -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…
Cancel
Save