Skip to content

Commit 4349925

Browse files
Merge pull request #48069 from nextcloud/backport/48031/stable30
2 parents 32866bc + ff49395 commit 4349925

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/dav/lib/Connector/Sabre/FilesReportPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ public function findNodesByFileIds(Node $rootNode, array $fileIds): array {
410410

411411
$results = [];
412412
foreach ($fileIds as $fileId) {
413-
$entry = $folder->getFirstNodeById($fileId);
413+
$entry = $folder->getFirstNodeById((int)$fileId);
414414
if ($entry) {
415415
$results[] = $this->wrapNode($entry);
416416
}

0 commit comments

Comments
 (0)