summaryrefslogtreecommitdiffstats
path: root/lib/private/files/cache
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-02-19 00:08:10 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-02-19 00:08:10 +0100
commitb32d31a2f13c5a6222a9b3fe7f7af92b4795634b (patch)
tree1e2f0466200e10161ce1e2f09f2d539e1015279a /lib/private/files/cache
parent88126498a0308122c178ec5336fe80b1d10079fb (diff)
parentadf9a4e4eb4f2eb4b4639d7241fd5a333eed248f (diff)
downloadnextcloud-server-b32d31a2f13c5a6222a9b3fe7f7af92b4795634b.tar.gz
nextcloud-server-b32d31a2f13c5a6222a9b3fe7f7af92b4795634b.zip
Merge pull request #13836 from owncloud/part-no-cache-update
Dont update the cache when working with part files
Diffstat (limited to 'lib/private/files/cache')
-rw-r--r--lib/private/files/cache/updater.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/private/files/cache/updater.php b/lib/private/files/cache/updater.php
index 31a4a7c21e7..9f4cbfeff8c 100644
--- a/lib/private/files/cache/updater.php
+++ b/lib/private/files/cache/updater.php
@@ -31,6 +31,9 @@ class Updater {
}
public function propagate($path, $time = null) {
+ if (Scanner::isPartialFile($path)) {
+ return;
+ }
$this->propagator->addChange($path);
$this->propagator->propagateChanges($time);
}
@@ -42,6 +45,9 @@ class Updater {
* @param int $time
*/
public function update($path, $time = null) {
+ if(Scanner::isPartialFile($path)) {
+ return;
+ }
/**
* @var \OC\Files\Storage\Storage $storage
* @var string $internalPath
@@ -64,6 +70,9 @@ class Updater {
* @param string $path
*/
public function remove($path) {
+ if (Scanner::isPartialFile($path)) {
+ return;
+ }
/**
* @var \OC\Files\Storage\Storage $storage
* @var string $internalPath
@@ -88,6 +97,9 @@ class Updater {
* @param string $target
*/
public function rename($source, $target) {
+ if (Scanner::isPartialFile($source) or Scanner::isPartialFile($target)) {
+ return;
+ }
/**
* @var \OC\Files\Storage\Storage $sourceStorage
* @var \OC\Files\Storage\Storage $targetStorage