Skip to content
Snippets Groups Projects
Commit adf9a4e4 authored by Robin Appelman's avatar Robin Appelman
Browse files

Dont bother updating the cache when working with part files

parent 842d0e22
No related branches found
No related tags found
No related merge requests found
...@@ -31,6 +31,9 @@ class Updater { ...@@ -31,6 +31,9 @@ class Updater {
} }
public function propagate($path, $time = null) { public function propagate($path, $time = null) {
if (Scanner::isPartialFile($path)) {
return;
}
$this->propagator->addChange($path); $this->propagator->addChange($path);
$this->propagator->propagateChanges($time); $this->propagator->propagateChanges($time);
} }
...@@ -42,6 +45,9 @@ class Updater { ...@@ -42,6 +45,9 @@ class Updater {
* @param int $time * @param int $time
*/ */
public function update($path, $time = null) { public function update($path, $time = null) {
if(Scanner::isPartialFile($path)) {
return;
}
/** /**
* @var \OC\Files\Storage\Storage $storage * @var \OC\Files\Storage\Storage $storage
* @var string $internalPath * @var string $internalPath
...@@ -64,6 +70,9 @@ class Updater { ...@@ -64,6 +70,9 @@ class Updater {
* @param string $path * @param string $path
*/ */
public function remove($path) { public function remove($path) {
if (Scanner::isPartialFile($path)) {
return;
}
/** /**
* @var \OC\Files\Storage\Storage $storage * @var \OC\Files\Storage\Storage $storage
* @var string $internalPath * @var string $internalPath
...@@ -88,6 +97,9 @@ class Updater { ...@@ -88,6 +97,9 @@ class Updater {
* @param string $target * @param string $target
*/ */
public function rename($source, $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 $sourceStorage
* @var \OC\Files\Storage\Storage $targetStorage * @var \OC\Files\Storage\Storage $targetStorage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment