diff --git a/main.go b/main.go index 2db5380..430b41a 100644 --- a/main.go +++ b/main.go @@ -90,6 +90,13 @@ func main() { // if opening the GUI, always check git for dirty repos log.Info("look for 'auto' here") + // Find the "auto" chat. + for _, chat := range me.chats.GetChats() { + if chat.GetChatName() == "auto" { + prettyFormatChat(chat) + okExit("") + } + } // doGui() okExit("") }