summaryrefslogtreecommitdiffstats
path: root/lib/private/files/cache
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/files/cache')
-rw-r--r--lib/private/files/cache/scanner.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/private/files/cache/scanner.php b/lib/private/files/cache/scanner.php
index dbffba1e306..b0890dcdc00 100644
--- a/lib/private/files/cache/scanner.php
+++ b/lib/private/files/cache/scanner.php
@@ -408,6 +408,10 @@ class Scanner extends BasicEmitter {
if (pathinfo($file, PATHINFO_EXTENSION) === 'part') {
return true;
}
+ if (strpos($file, '.part/') !== false) {
+ return true;
+ }
+
return false;
}