diff options
author | Roeland Douma <rullzer@users.noreply.github.com> | 2016-04-30 12:40:30 +0200 |
---|---|---|
committer | Roeland Douma <rullzer@users.noreply.github.com> | 2016-04-30 12:40:30 +0200 |
commit | 3a7ad79505e749307e8254f20a2273dd1309b848 (patch) | |
tree | a0d2276b32e3915cef5e20fc2027bacd3abfeb57 /lib | |
parent | 8f8ae963fd3b26c0940364b37f6c7660ef3de03e (diff) | |
parent | 00122c166a386b52a127e97cfaee78cd8fd44e58 (diff) | |
download | nextcloud-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.php | 2 |
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)); } } |