From f20c483513780856f0e5aa0d853a9ef92de7646e Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 13 Jan 2025 17:59:17 +0100 Subject: [PATCH] fix: use proper way to get numeric storage id for mountpoint Signed-off-by: Robin Appelman --- lib/private/Files/Mount/MountPoint.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/Files/Mount/MountPoint.php b/lib/private/Files/Mount/MountPoint.php index 7a5a87be35b17..bab2dc8e4bd3b 100644 --- a/lib/private/Files/Mount/MountPoint.php +++ b/lib/private/Files/Mount/MountPoint.php @@ -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; }