From: Robin Appelman Date: Tue, 24 Jun 2014 12:48:59 +0000 (+0200) Subject: Don't bother checking for external updates for objectstore storages X-Git-Tag: v7.0.0RC1~69^2~6 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=92f2a430a81f166a29779be7a7dc694d9f3efa67;p=nextcloud-server.git Don't bother checking for external updates for objectstore storages --- 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; + } +}