summaryrefslogtreecommitdiffstats
path: root/lib/files/filesystem.php
diff options
context:
space:
mode:
authorMichael Gapczynski <mtgap@owncloud.com>2013-05-02 17:47:11 -0400
committerMichael Gapczynski <mtgap@owncloud.com>2013-05-02 17:47:11 -0400
commit7039421efc80f3551026d3f16ba6887e7be02234 (patch)
tree337169030bac344b8e951cf916ec63ea913faae3 /lib/files/filesystem.php
parent8a5e88b21cf95f8d0f964ee012f15e447644a10f (diff)
downloadnextcloud-server-7039421efc80f3551026d3f16ba6887e7be02234.tar.gz
nextcloud-server-7039421efc80f3551026d3f16ba6887e7be02234.zip
Fix retrieving of mount points for shared storage, fix #3218
Diffstat (limited to 'lib/files/filesystem.php')
-rw-r--r--lib/files/filesystem.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php
index ad21a98fabc..eadd8a93faf 100644
--- a/lib/files/filesystem.php
+++ b/lib/files/filesystem.php
@@ -199,7 +199,7 @@ class Filesystem {
* @return Mount\Mount[]
*/
public static function getMountByNumericId($id) {
- return self::$mounts->findByStorageId($id);
+ return self::$mounts->findByNumericId($id);
}
/**