From c676230cbc7da1c2c4d5540f89da32e9228deffd Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 2 Feb 2025 23:19:57 +0100 Subject: Add autoconnect + reconnect logic --- Hotline/macOS/MessageBoardEditorView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Hotline/macOS/MessageBoardEditorView.swift') diff --git a/Hotline/macOS/MessageBoardEditorView.swift b/Hotline/macOS/MessageBoardEditorView.swift index 029616f..474384e 100644 --- a/Hotline/macOS/MessageBoardEditorView.swift +++ b/Hotline/macOS/MessageBoardEditorView.swift @@ -20,7 +20,7 @@ struct MessageBoardEditorView: View { let cleanedText = text.trimmingCharacters(in: .whitespacesAndNewlines) - await model.postToMessageBoard(text: cleanedText) + model.postToMessageBoard(text: cleanedText) let _ = await model.getMessageBoard() // let success = await model.postNewsArticle(title: title, body: text, at: path, parentID: parentID) -- cgit