diff options
author | Robin Appelman <robin@icewind.nl> | 2016-12-13 12:53:38 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2016-12-13 12:53:38 +0100 |
commit | 14a561ddad8bbd6ae1d524a49c70a7926c06310f (patch) | |
tree | db08cea1ebdd0e7ea5b80fd77269e03efb7652bc /lib/private/Files/Cache/CacheEntry.php | |
parent | 86473306f350cc426ce01009f6f6e2b4a57df38b (diff) | |
download | nextcloud-server-14a561ddad8bbd6ae1d524a49c70a7926c06310f.tar.gz nextcloud-server-14a561ddad8bbd6ae1d524a49c70a7926c06310f.zip |
always use numeric storage id in cacheentry
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Files/Cache/CacheEntry.php')
-rw-r--r-- | lib/private/Files/Cache/CacheEntry.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Cache/CacheEntry.php b/lib/private/Files/Cache/CacheEntry.php index 784bd3a6f98..4a2579a88f8 100644 --- a/lib/private/Files/Cache/CacheEntry.php +++ b/lib/private/Files/Cache/CacheEntry.php @@ -62,7 +62,7 @@ class CacheEntry implements ICacheEntry, \ArrayAccess { } public function getStorageId() { - return $this->data['storage_id']; + return $this->data['storage']; } |