From 7646310dd46cfa0dc436574d6699563ca5136bf0 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 22 Aug 2025 11:22:52 -0500 Subject: [PATCH] show 'auto' by default --- main.go | 7 +++++++ 1 file changed, 7 insertions(+) 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("") }