From cfeba8c7dc43b30ee65cda4b104600e3909a9e3f Mon Sep 17 00:00:00 2001 From: Gregory 'Rudi' Rudolph Date: Mon, 23 Sep 2019 11:49:47 -0400 Subject: [PATCH] Repopulate list on message send to fix unread PM bug --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index f41189e..798647e 100644 --- a/main.go +++ b/main.go @@ -293,6 +293,7 @@ func handleInput(g *gocui.Gui) error { } else { go sendChat(inputString) } + go populateList(g) } clearView(g, "Input") return nil