diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Files/ObjectStore/ObjectStoreStorage.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/private/Files/ObjectStore/ObjectStoreStorage.php b/lib/private/Files/ObjectStore/ObjectStoreStorage.php index acb8d670780..094a2915730 100644 --- a/lib/private/Files/ObjectStore/ObjectStoreStorage.php +++ b/lib/private/Files/ObjectStore/ObjectStoreStorage.php @@ -194,9 +194,8 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common { 'message' => 'Could not delete object ' . $this->getURN($stat['fileid']) . ' for ' . $path, ]); return false; - } else { - //removing from cache is ok as it does not exist in the objectstore anyway } + //removing from cache is ok as it does not exist in the objectstore anyway } $this->getCache()->remove($path); return true; |