diff options
author | Robin Appelman <robin@icewind.nl> | 2021-10-15 16:03:18 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2021-10-15 16:03:18 +0200 |
commit | 55346b5d6cb24d11157b7a2e73a91fda85bb9af5 (patch) | |
tree | 3758206366ffabf5d2406806621da35fd6a133a4 /lib/private/Files | |
parent | 4bd08af2adf6742751aba089d28f6cb486e69e13 (diff) | |
download | nextcloud-server-55346b5d6cb24d11157b7a2e73a91fda85bb9af5.tar.gz nextcloud-server-55346b5d6cb24d11157b7a2e73a91fda85bb9af5.zip |
more reliable return value for Watcher::checkUpdate
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Files')
-rw-r--r-- | lib/private/Files/Cache/Watcher.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/private/Files/Cache/Watcher.php b/lib/private/Files/Cache/Watcher.php index 1c1ce6d777b..acc76f263dc 100644 --- a/lib/private/Files/Cache/Watcher.php +++ b/lib/private/Files/Cache/Watcher.php @@ -88,7 +88,14 @@ class Watcher implements IWatcher { } if ($cachedEntry === false || $this->needsUpdate($path, $cachedEntry)) { $this->update($path, $cachedEntry); - return true; + + if ($cachedEntry === false) { + return true; + } else { + // storage backends can sometimes return false positives, only return true if the scanner actually found a change + $newEntry = $this->cache->get($path); + return $newEntry->getStorageMTime() > $cachedEntry->getStorageMTime(); + } } else { return false; } |