diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-02-02 23:19:57 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-02-02 23:19:57 +0100 |
| commit | c676230cbc7da1c2c4d5540f89da32e9228deffd (patch) | |
| tree | b47f940282ee552b2608d847a9ce5e06b5749f29 /Hotline/macOS/MessageBoardEditorView.swift | |
| parent | 77b3ac3c051fc4e8fa126cd21e261be28f4aad1a (diff) | |
Add autoconnect + reconnect logic
Diffstat (limited to 'Hotline/macOS/MessageBoardEditorView.swift')
| -rw-r--r-- | Hotline/macOS/MessageBoardEditorView.swift | 2 |
1 files changed, 1 insertions, 1 deletions
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) |