diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2013-01-26 16:11:35 -0500 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2013-01-26 16:11:35 -0500 |
commit | 03b947e3ece28325d3bc64319a228d66d493d182 (patch) | |
tree | 85e9c6aec41c501b0f27c91e69e497b8c2590904 | |
parent | f25db779d90814f1d54d594caf1bb830ea417b95 (diff) | |
download | nextcloud-server-03b947e3ece28325d3bc64319a228d66d493d182.tar.gz nextcloud-server-03b947e3ece28325d3bc64319a228d66d493d182.zip |
Don't check for updates for sub storages, these scans should be done in the background
-rw-r--r-- | lib/files/view.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/files/view.php b/lib/files/view.php index c50897603eb..e6b52fb35b6 100644 --- a/lib/files/view.php +++ b/lib/files/view.php @@ -769,9 +769,6 @@ class View { if ($subCache->getStatus('') === Cache\Cache::NOT_FOUND) { $subScanner = $subStorage->getScanner(''); $subScanner->scanFile(''); - } else { - $subWatcher = $subStorage->getWatcher(''); - $subWatcher->checkUpdate(''); } $rootEntry = $subCache->get(''); |