From 92f2a430a81f166a29779be7a7dc694d9f3efa67 Mon Sep 17 00:00:00 2001
From: Robin Appelman <icewind@owncloud.com>
Date: Tue, 24 Jun 2014 14:48:59 +0200
Subject: [PATCH] Don't bother checking for external updates for objectstore
 storages

---
 lib/private/files/objectstore/objectstorestorage.php | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/lib/private/files/objectstore/objectstorestorage.php b/lib/private/files/objectstore/objectstorestorage.php
index 16b28a61ec..4bc258a580 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;
+	}
+}
-- 
GitLab