diff options
author | Robin Appelman <icewind@owncloud.com> | 2015-11-10 14:40:32 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2015-11-19 13:30:50 +0100 |
commit | 02f847bc66ea9238c10a5a04d3980c81c7b09293 (patch) | |
tree | 89050c0a665377900fadc1db2a60751ad201b471 /lib/private/files | |
parent | d5061b8139b4513c30aee782be94da7d69582710 (diff) | |
download | nextcloud-server-02f847bc66ea9238c10a5a04d3980c81c7b09293.tar.gz nextcloud-server-02f847bc66ea9238c10a5a04d3980c81c7b09293.zip |
use relative path
Diffstat (limited to 'lib/private/files')
-rw-r--r-- | lib/private/files/view.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 70e8db83381..0d5078fb3d8 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -1204,7 +1204,7 @@ class View { } else if (!Cache\Scanner::isPartialFile($internalPath) && $watcher->needsUpdate($internalPath, $data)) { $this->lockFile($relativePath, ILockingProvider::LOCK_SHARED); $watcher->update($internalPath, $data); - $this->updater->propagate($path); + $this->updater->propagate($relativePath); $data = $cache->get($internalPath); $this->unlockFile($relativePath, ILockingProvider::LOCK_SHARED); } |