diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-06-24 14:48:59 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-06-24 14:48:59 +0200 |
commit | 92f2a430a81f166a29779be7a7dc694d9f3efa67 (patch) | |
tree | 3c1a9638e4e400c4da40d5d963c6843bd6d5345a | |
parent | eb97eee964b97613a3fab7c101688e6515f393b1 (diff) | |
download | nextcloud-server-92f2a430a81f166a29779be7a7dc694d9f3efa67.tar.gz nextcloud-server-92f2a430a81f166a29779be7a7dc694d9f3efa67.zip |
Don't bother checking for external updates for objectstore storages
-rw-r--r-- | lib/private/files/objectstore/objectstorestorage.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/private/files/objectstore/objectstorestorage.php b/lib/private/files/objectstore/objectstorestorage.php index 16b28a61ece..4bc258a5807 100644 --- a/lib/private/files/objectstore/objectstorestorage.php +++ b/lib/private/files/objectstore/objectstorestorage.php @@ -406,4 +406,14 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common { return true; } -}
\ No newline at end of file + /** + * external changes are not supported + * + * @param string $path + * @param int $time + * @return bool + */ + public function hasUpdated($path, $time) { + return false; + } +} |