diff options
author | Robin Appelman <icewind@owncloud.com> | 2016-01-25 13:20:59 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-01-28 11:46:44 +0100 |
commit | d7a777af3a5860334937808dc1d838ecbc713cba (patch) | |
tree | ecc2b0dd23dada5672e4c4878cce4806ebd0eb01 /lib/private/files/cache/wrapper/cachejail.php | |
parent | 1369f2c6840e6bbac50526236771cb730a74f975 (diff) | |
download | nextcloud-server-d7a777af3a5860334937808dc1d838ecbc713cba.tar.gz nextcloud-server-d7a777af3a5860334937808dc1d838ecbc713cba.zip |
fix cachejail->update
Diffstat (limited to 'lib/private/files/cache/wrapper/cachejail.php')
-rw-r--r-- | lib/private/files/cache/wrapper/cachejail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files/cache/wrapper/cachejail.php b/lib/private/files/cache/wrapper/cachejail.php index 4188fb72622..32bd3626fcb 100644 --- a/lib/private/files/cache/wrapper/cachejail.php +++ b/lib/private/files/cache/wrapper/cachejail.php @@ -113,7 +113,7 @@ class CacheJail extends CacheWrapper { * @param array $data */ public function update($id, array $data) { - $this->cache->update($this->getSourcePath($id), $data); + $this->cache->update($id, $data); } /** |