From 02f847bc66ea9238c10a5a04d3980c81c7b09293 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 10 Nov 2015 14:40:32 +0100 Subject: [PATCH] use relative path --- lib/private/files/view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 70e8db8338..0d5078fb3d 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); }