diff options
author | acsfer <carlos@reendex.com> | 2021-11-24 11:55:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-24 11:55:06 +0100 |
commit | 97e1855ed5e31faab98f6f6b95182aa0442e6900 (patch) | |
tree | 7f6d05700c5ccd7e1adc166336f694b73cef9ab3 | |
parent | 0a0fd3377310ce4faa72568089746b12c28e0679 (diff) | |
download | nextcloud-server-97e1855ed5e31faab98f6f6b95182aa0442e6900.tar.gz nextcloud-server-97e1855ed5e31faab98f6f6b95182aa0442e6900.zip |
Typo
-rw-r--r-- | lib/private/Files/View.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/View.php b/lib/private/Files/View.php index 25ea6261a38..4b7697f32b3 100644 --- a/lib/private/Files/View.php +++ b/lib/private/Files/View.php @@ -1340,7 +1340,7 @@ class View { try { // if the file is not in the cache or needs to be updated, trigger the scanner and reload the data - if (!$data || isset($data['size']) && $data['size'] === -1) { + if (!$data || (isset($data['size']) && $data['size'] === -1)) { if (!$storage->file_exists($internalPath)) { return false; } |