Browse Source

Merge pull request #15022 from nextcloud/bugfix/noid/respect-lookup-server-disabling-master

Respect the setting if the lookup server is disabled
tags/v16.0.0RC1
Joas Schilling 5 years ago
parent
commit
d1e4d614da
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      apps/lookup_server_connector/lib/UpdateLookupServer.php

+ 1
- 1
apps/lookup_server_connector/lib/UpdateLookupServer.php View File

@@ -165,7 +165,7 @@ class UpdateLookupServer {
* @return bool
*/
private function shouldUpdateLookupServer() {
return $this->lookupServerEnabled || !empty($this->lookupServer);
return $this->lookupServerEnabled && !empty($this->lookupServer);
}

}

Loading…
Cancel
Save