diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-08-02 19:23:22 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-08-02 19:40:07 +0200 |
commit | f05e96ac2b9c38463fba8712d8b13844e03cd191 (patch) | |
tree | 6c3a7d43f65bd0605e24bc67de65599cf1808bb5 /main | |
parent | 79a1c1db2e7c29b612ba67a303a89a10be4a7e80 (diff) |
Changelog: API: Return type of `sendMessage` and `sendDirectMessage` is now `()`
Diffstat (limited to 'main')
-rw-r--r-- | main/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/Main.hs b/main/Main.hs index d95e766..3bfeb5f 100644 --- a/main/Main.hs +++ b/main/Main.hs @@ -686,7 +686,7 @@ cmdSend :: Command cmdSend = void $ do text <- asks ciLine conv <- getSelectedConversation - void $ sendMessage conv (T.pack text) + sendMessage conv (T.pack text) cmdDelete :: Command cmdDelete = void $ do |