Changed access mode for Dropbox to 'auto'

This commit is contained in:
Sascha Schmidt 2014-05-21 09:40:03 +02:00
parent 40fc1d5b4b
commit 4b2888cd9a
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ class Dropbox extends \OC\Files\Storage\Common {
$this->id = 'dropbox::'.$params['app_key'] . $params['token']. '/' . $this->root;
$oauth = new \Dropbox_OAuth_Curl($params['app_key'], $params['app_secret']);
$oauth->setToken($params['token'], $params['token_secret']);
$this->dropbox = new \Dropbox_API($oauth, 'dropbox');
$this->dropbox = new \Dropbox_API($oauth, 'auto');
} else {
throw new \Exception('Creating \OC\Files\Storage\Dropbox storage failed');
}