From d7a777af3a5860334937808dc1d838ecbc713cba Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 25 Jan 2016 13:20:59 +0100 Subject: [PATCH] fix cachejail->update --- lib/private/files/cache/wrapper/cachejail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } /** -- 2.39.5