Always query lookup server in GS mode
Without the lookupserver GS is kind of useless. If the admin places their lookup sever outside of the reachable network that is not something we can help. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
a7b322bd65
commit
8ea0e721ed
|
@ -66,7 +66,7 @@ class LookupPlugin implements ISearchPlugin {
|
|||
$hasInternetConnection = (bool)$this->config->getSystemValue('has_internet_connection', true);
|
||||
|
||||
// if case of Global Scale we always search the lookup server
|
||||
if ((!$isLookupServerEnabled && !$isGlobalScaleEnabled) || !$hasInternetConnection) {
|
||||
if (!$isGlobalScaleEnabled && (!$isLookupServerEnabled || !$hasInternetConnection)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue