Skip to content
Snippets Groups Projects
Commit 92f2a430 authored by Robin Appelman's avatar Robin Appelman
Browse files

Don't bother checking for external updates for objectstore storages

parent eb97eee9
No related branches found
No related tags found
No related merge requests found
...@@ -406,4 +406,14 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common { ...@@ -406,4 +406,14 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common {
return true; 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;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment