From b9ff7172f2654818fe90a0b78ac0b768a5526acc Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 2 Dec 2016 16:20:49 +0100 Subject: [PATCH] only update the cache if the storage operation succeeds Signed-off-by: Robin Appelman --- lib/private/files/view.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/private/files/view.php b/lib/private/files/view.php index ce35e22197..aee937920d 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -1108,13 +1108,13 @@ class View { throw $e; } - if (in_array('delete', $hooks) and $result) { + if ($result && in_array('delete', $hooks) and $result) { $this->removeUpdate($storage, $internalPath); } - if (in_array('write', $hooks) and $operation !== 'fopen') { + if ($result && in_array('write', $hooks) and $operation !== 'fopen') { $this->writeUpdate($storage, $internalPath); } - if (in_array('touch', $hooks)) { + if ($result && in_array('touch', $hooks)) { $this->writeUpdate($storage, $internalPath, $extraParam); }