From 79c30f7a9405b2c663e79e156062b44664823c6f Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Wed, 22 May 2024 21:09:53 +0200 Subject: [PATCH] Fix issue with starting proxy --- app/Livewire/Server/Proxy/Deploy.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Livewire/Server/Proxy/Deploy.php b/app/Livewire/Server/Proxy/Deploy.php index 2ebaa1a38..5587451a4 100644 --- a/app/Livewire/Server/Proxy/Deploy.php +++ b/app/Livewire/Server/Proxy/Deploy.php @@ -72,6 +72,8 @@ class Deploy extends Component public function startProxy() { try { + $this->server->proxy->force_stop = false; + $this->server->save(); $activity = StartProxy::run($this->server); $this->dispatch('activityMonitor', $activity->id, ProxyStatusChanged::class); } catch (\Throwable $e) {