Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix restore of multiple folders with many files from trash_bin
related to #44504

Signed-off-by: Matthieu Gallien <[email protected]>
  • Loading branch information
mgallien committed Jun 10, 2024
commit 6c37b16b79fc9cf89b7158fa21cdf611975c7bd4
2 changes: 1 addition & 1 deletion lib/private/Files/Cache/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ public function moveFromCache(ICache $sourceCache, $sourcePath, $targetPath) {
for ($i = 1; $i <= $retryLimit; $i++) {
try {
$this->connection->beginTransaction();
$query->executeStatement();
$query->execute();
break;
} catch (\OC\DatabaseException $e) {
$this->connection->rollBack();
Expand Down