Logic Correction from "AND" to "OR"

This commit is contained in:
netkas 2025-03-03 14:38:59 -05:00
parent 603ee57511
commit 9eeab95e4d

View file

@ -192,7 +192,7 @@
*/ */
public function isExternal(): bool public function isExternal(): bool
{ {
return $this->username === 'host' && $this->server !== Configuration::getInstanceConfiguration()->getDomain(); return $this->username === 'host' || $this->server !== Configuration::getInstanceConfiguration()->getDomain();
} }
/** /**