show 'auto' by default

This commit is contained in:
Jeff Carr 2025-08-22 11:22:52 -05:00
parent cf812da1d3
commit 7646310dd4
1 changed files with 7 additions and 0 deletions

View File

@ -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("")
}