diff --git a/app/Models/Address.php b/app/Models/Address.php index 456bf3a..c431ad4 100644 --- a/app/Models/Address.php +++ b/app/Models/Address.php @@ -742,7 +742,7 @@ class Address extends Model public function getIsDefaultRouteAttribute(): bool { - return ! is_null($this->session('default')); + return (! is_null($x=$this->session('default'))) && $x; } public function getIsDownAttribute(): bool @@ -752,7 +752,7 @@ class Address extends Model public function getIsHostedAttribute(): bool { - return ! is_null($this->getPassSessionAttribute()); + return strlen($this->getPassSessionAttribute()) > 0; } public function getIsHoldAttribute(): bool