mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Don't bother checking for external updates for objectstore storages
This commit is contained in:
parent
eb97eee964
commit
92f2a430a8
1 changed files with 11 additions and 1 deletions
|
|
@ -406,4 +406,14 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common {
|
|||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
/**
|
||||
* external changes are not supported
|
||||
*
|
||||
* @param string $path
|
||||
* @param int $time
|
||||
* @return bool
|
||||
*/
|
||||
public function hasUpdated($path, $time) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue