diff --git a/cmdClean.go b/cmdClean.go index aeb2eed..21e2853 100644 --- a/cmdClean.go +++ b/cmdClean.go @@ -15,6 +15,7 @@ func init() { func cmdClean(cmd []string) { clearView("Chat") + clearView("List") go populateChat() - + go populateList() } diff --git a/cmdSet.go b/cmdSet.go index 83e225c..bd5e17a 100644 --- a/cmdSet.go +++ b/cmdSet.go @@ -92,4 +92,5 @@ func loadFromToml() { if config.Has("Formatting.timeFormat") { timeFormat = config.Get("Formatting.timeFormat").(string) } + RunCommand("clean") }