aboutsummaryrefslogtreecommitdiffstats
path: root/apps/encryption
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-11-25 13:53:31 +0100
committerRobin Appelman <icewind@owncloud.com>2015-11-25 14:16:00 +0100
commitb025f07fb7090acfe9d168974b4ce2e66f973e30 (patch)
treeb6fd66ae1914ead55e046d34c55ea0569587107c /apps/encryption
parent50f6817ce99f3870e1e8dea92eaa35a0c40553ba (diff)
downloadnextcloud-server-b025f07fb7090acfe9d168974b4ce2e66f973e30.tar.gz
nextcloud-server-b025f07fb7090acfe9d168974b4ce2e66f973e30.zip
Make Cache\Updater per storage
Diffstat (limited to 'apps/encryption')
-rw-r--r--apps/encryption/lib/migration.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/encryption/lib/migration.php b/apps/encryption/lib/migration.php
index 1a7c2e9877d..0b691624a00 100644
--- a/apps/encryption/lib/migration.php
+++ b/apps/encryption/lib/migration.php
@@ -50,7 +50,7 @@ class Migration {
*/
public function __construct(IConfig $config, View $view, IDBConnection $connection, ILogger $logger) {
$this->view = $view;
- $this->view->getUpdater()->disable();
+ $this->view->disableCacheUpdate();
$this->connection = $connection;
$this->moduleId = \OCA\Encryption\Crypto\Encryption::ID;
$this->config = $config;