Logic Correction from "AND" to "OR"
This commit is contained in:
parent
603ee57511
commit
9eeab95e4d
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@
|
|||
*/
|
||||
public function isExternal(): bool
|
||||
{
|
||||
return $this->username === 'host' && $this->server !== Configuration::getInstanceConfiguration()->getDomain();
|
||||
return $this->username === 'host' || $this->server !== Configuration::getInstanceConfiguration()->getDomain();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue