diff options
Diffstat (limited to 'ui')
-rw-r--r-- | ui/view-main.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ui/view-main.go b/ui/view-main.go index 172e29f..c0c2424 100644 --- a/ui/view-main.go +++ b/ui/view-main.go @@ -134,11 +134,7 @@ func (view *MainView) MarkRead(roomView *RoomView) { func (view *MainView) InputChanged(roomView *RoomView, text string) { if !roomView.config.Preferences.DisableTypingNotifs { - if len(text) == 0 { - go view.matrix.SendTyping(roomView.Room.ID, false) - } else if text[0] != '/' { - go view.matrix.SendTyping(roomView.Room.ID, true) - } + view.matrix.SendTyping(roomView.Room.ID, len(text) > 0 && text[0] != '/') } } |