Repopulate list on message send to fix unread PM bug

This commit is contained in:
Gregory 'Rudi' Rudolph
2019-09-23 11:49:47 -04:00
parent 991ca08c2e
commit cfeba8c7dc

View File

@ -293,6 +293,7 @@ func handleInput(g *gocui.Gui) error {
} else { } else {
go sendChat(inputString) go sendChat(inputString)
} }
go populateList(g)
} }
clearView(g, "Input") clearView(g, "Input")
return nil return nil