Skip to content

Commit

Permalink
fix: use proper way to get numeric storage id for mountpoint
Browse files Browse the repository at this point in the history
Signed-off-by: Robin Appelman <[email protected]>
  • Loading branch information
icewind1991 committed Jan 13, 2025
1 parent a6bcaf7 commit f20c483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Files/Mount/MountPoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ public function getNumericStorageId() {
if (is_null($storage)) {
return -1;
}
$this->numericStorageId = $storage->getStorageCache()->getNumericId();
$this->numericStorageId = $storage->getCache()->getNumericStorageId();
}
return $this->numericStorageId;
}
Expand Down

0 comments on commit f20c483

Please sign in to comment.