Skip to content

Commit

Permalink
Merge pull request #48067 from nextcloud/backport/48031/stable29
Browse files Browse the repository at this point in the history
  • Loading branch information
provokateurin authored Sep 16, 2024
2 parents bac653a + c49da21 commit f2f60c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/dav/lib/Connector/Sabre/FilesReportPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ public function findNodesByFileIds(Node $rootNode, array $fileIds): array {

$results = [];
foreach ($fileIds as $fileId) {
$entry = $folder->getFirstNodeById($fileId);
$entry = $folder->getFirstNodeById((int)$fileId);
if ($entry) {
$results[] = $this->wrapNode($entry);
}
Expand Down

0 comments on commit f2f60c2

Please sign in to comment.