]> source.dussan.org Git - nextcloud-server.git/commitdiff
Don't bother checking for external updates for objectstore storages
authorRobin Appelman <icewind@owncloud.com>
Tue, 24 Jun 2014 12:48:59 +0000 (14:48 +0200)
committerRobin Appelman <icewind@owncloud.com>
Tue, 24 Jun 2014 12:48:59 +0000 (14:48 +0200)
lib/private/files/objectstore/objectstorestorage.php

index 16b28a61ece7dd0d73833dcfc6705c888ee710c5..4bc258a5807f37c2348276fcb3e42d46527eedee 100644 (file)
@@ -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;
+       }
+}