Skip to content

Commit

Permalink
Fix Undefined property: OCA\LookupServerConnector\UpdateLookupServer:…
Browse files Browse the repository at this point in the history
…:$config

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
  • Loading branch information
kesselb committed Mar 4, 2019
1 parent 79ec7bb commit 7406f42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/lookup_server_connector/lib/UpdateLookupServer.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public function __construct(AccountManager $accountManager,
return;
}

$this->lookupServerEnabled = $this->config->getAppValue('files_sharing', 'lookupServerUploadEnabled', 'yes') === 'yes';
$this->lookupServerEnabled = $config->getAppValue('files_sharing', 'lookupServerUploadEnabled', 'yes') === 'yes';

$this->lookupServer = $config->getSystemValue('lookup_server', 'https://lookup.nextcloud.com');
if(!empty($this->lookupServer)) {
Expand Down

0 comments on commit 7406f42

Please sign in to comment.