From: Robin Appelman Date: Mon, 25 Jan 2016 12:20:59 +0000 (+0100) Subject: fix cachejail->update X-Git-Tag: v9.0beta1~165^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d7a777af3a5860334937808dc1d838ecbc713cba;p=nextcloud-server.git fix cachejail->update --- 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); } /**