summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRoeland Douma <rullzer@users.noreply.github.com>2016-04-30 12:40:30 +0200
committerRoeland Douma <rullzer@users.noreply.github.com>2016-04-30 12:40:30 +0200
commit3a7ad79505e749307e8254f20a2273dd1309b848 (patch)
treea0d2276b32e3915cef5e20fc2027bacd3abfeb57 /lib
parent8f8ae963fd3b26c0940364b37f6c7660ef3de03e (diff)
parent00122c166a386b52a127e97cfaee78cd8fd44e58 (diff)
downloadnextcloud-server-3a7ad79505e749307e8254f20a2273dd1309b848.tar.gz
nextcloud-server-3a7ad79505e749307e8254f20a2273dd1309b848.zip
Merge pull request #24212 from owncloud/no_need_to_prop_etag_on_shares
There is no need to do old etag propagation on shares
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Files/Cache/Wrapper/CacheJail.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Cache/Wrapper/CacheJail.php b/lib/private/Files/Cache/Wrapper/CacheJail.php
index 3148d1412f4..d737d28fc80 100644
--- a/lib/private/Files/Cache/Wrapper/CacheJail.php
+++ b/lib/private/Files/Cache/Wrapper/CacheJail.php
@@ -303,6 +303,6 @@ class CacheJail extends CacheWrapper {
if ($sourceCache === $this) {
return $this->move($sourcePath, $targetPath);
}
- return $this->cache->moveFromCache($sourceCache, $sourcePath, $targetPath);
+ return $this->cache->moveFromCache($sourceCache, $sourcePath, $this->getSourcePath($targetPath));
}
}