diff options
author | Robin Appelman <robin@icewind.nl> | 2017-01-25 17:03:45 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2017-01-25 17:03:45 +0100 |
commit | 2520a4831b2f2fefc52395355238091c9d6823b8 (patch) | |
tree | 5e1c7ebdf4f8b0fdd5c761b32a760ef5c5979ac8 /lib/private/Files/Storage | |
parent | ffe2543a573d7731bc2e89ad158a61d50906dfb0 (diff) | |
download | nextcloud-server-2520a4831b2f2fefc52395355238091c9d6823b8.tar.gz nextcloud-server-2520a4831b2f2fefc52395355238091c9d6823b8.zip |
Make sure we use the correct storage id when scanning a jailed storage
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Files/Storage')
-rw-r--r-- | lib/private/Files/Storage/Wrapper/Jail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Storage/Wrapper/Jail.php b/lib/private/Files/Storage/Wrapper/Jail.php index 8615d73f346..013f5ab2344 100644 --- a/lib/private/Files/Storage/Wrapper/Jail.php +++ b/lib/private/Files/Storage/Wrapper/Jail.php @@ -58,7 +58,7 @@ class Jail extends Wrapper { } public function getId() { - return 'link:' . parent::getId() . ':' . $this->rootPath; + return parent::getId(); } /** |