This commit is contained in:
Joao Patricio
2023-05-12 19:51:07 +01:00
parent 25815988d9
commit 3ba4a5cfb5
2 changed files with 12 additions and 3 deletions

View File

@@ -33,9 +33,9 @@ class Proxy extends Component
public function checkProxySettingsInSync()
{
$status = resolve(CheckProxySettingsInSync::class)($this->server);
$this->is_proxy_settings_in_sync = resolve(CheckProxySettingsInSync::class)($this->server);
$this->is_check_proxy_complete = true;
$this->is_proxy_settings_in_sync = $status === 'true';
}
public function render()