From fbe387f91226cdb9e214b2bc85cb73742da028b0 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Tue, 3 Mar 2020 21:15:25 +0200 Subject: Don't send typing stop event if not necessary --- ui/view-main.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'ui') 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] != '/') } } -- cgit v1.2.3