mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 18:21:40 -04:00
Merge pull request #15022 from nextcloud/bugfix/noid/respect-lookup-server-disabling-master
Respect the setting if the lookup server is disabled
This commit is contained in:
commit
d1e4d614da
1 changed files with 1 additions and 1 deletions
|
|
@ -165,7 +165,7 @@ class UpdateLookupServer {
|
|||
* @return bool
|
||||
*/
|
||||
private function shouldUpdateLookupServer() {
|
||||
return $this->lookupServerEnabled || !empty($this->lookupServer);
|
||||
return $this->lookupServerEnabled && !empty($this->lookupServer);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue