From e03680f7db7e033f7b193dc8880cf1b0bd843bfc Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 22 Jun 2026 14:14:26 +0300 Subject: Fix async URL browser launch for mq0 --- internal/ui/table.go | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'internal/ui/table.go') diff --git a/internal/ui/table.go b/internal/ui/table.go index 69d1481..e629c20 100644 --- a/internal/ui/table.go +++ b/internal/ui/table.go @@ -247,6 +247,11 @@ type shellCompletionMsg struct { sources task.CompletionSources } +type openURLDoneMsg struct { + err error + taskID int +} + type blinkMsg struct{} type descriptionTempFile interface { @@ -609,6 +614,8 @@ func (m *Model) Update(msg tea.Msg) (tea.Model, tea.Cmd) { return m.handleShellDone(msg) case shellCompletionMsg: return m.handleShellCompletion(msg) + case openURLDoneMsg: + return m.handleOpenURLDone(msg) case blinkMsg: return m.handleBlinkMsg() case struct{ clearStatus bool }: -- cgit v1.2.3