From 8790cffeb490d397fefeeeac51afa37beb422aec Mon Sep 17 00:00:00 2001 From: boban Date: Tue, 28 Oct 2025 21:34:06 +0100 Subject: [PATCH] =?UTF-8?q?Fix:=20Mailbox=20Stats=20=C3=BCber=20Dovecot=20?= =?UTF-8?q?mit=20config/mailpool.php?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Livewire/Ui/System/UpdateCard.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Livewire/Ui/System/UpdateCard.php b/app/Livewire/Ui/System/UpdateCard.php index c66d9a3..7b7414a 100644 --- a/app/Livewire/Ui/System/UpdateCard.php +++ b/app/Livewire/Ui/System/UpdateCard.php @@ -52,9 +52,9 @@ class UpdateCard extends Component if ($this->running) { $this->state = 'running'; - $this->dispatch('openModal', component: 'ui.system.update-modal'); + $this->dispatch('openModal', component: 'ui.system.modal.update-modal'); } - + $this->recomputeUi(); } @@ -70,7 +70,7 @@ class UpdateCard extends Component // evtl. alte Einträge aufräumen Cache::forget('mailwolt.update_available'); Cache::put($this->cacheStartedAtKey, time(), now()->addHour()); - $this->dispatch('openModal', component: 'ui.system.update-modal'); + $this->dispatch('openModal', component: 'ui.system.modal.update-modal'); // Wrapper starten (setzt /var/lib/mailwolt/update/{state,rc} und schreibt Versionen) @shell_exec('nohup sudo -n /usr/local/sbin/mailwolt-update >/dev/null 2>&1 &');