diff options
| author | Jeff Carr <[email protected]> | 2025-08-22 11:22:52 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-22 11:22:52 -0500 |
| commit | 7646310dd46cfa0dc436574d6699563ca5136bf0 (patch) | |
| tree | f17e08ceeac1df6d21107f36efeecdc2ac0a7798 /main.go | |
| parent | cf812da1d3cfa94fa7d701a0dc01c6bd2ff3f70b (diff) | |
show 'auto' by default
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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("") } |
