diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2013-05-02 17:47:11 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2013-05-02 17:47:11 -0400 |
commit | 7039421efc80f3551026d3f16ba6887e7be02234 (patch) | |
tree | 337169030bac344b8e951cf916ec63ea913faae3 /lib/files/filesystem.php | |
parent | 8a5e88b21cf95f8d0f964ee012f15e447644a10f (diff) | |
download | nextcloud-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.php | 2 |
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); } /** |