diff options
| author | Jeff Carr <[email protected]> | 2025-08-22 04:00:41 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-22 04:00:41 -0500 |
| commit | 76ef21fc66db127098ddd634fd7e2a52abb81193 (patch) | |
| tree | d55e5523990eff367ddd60d251cf7c587cd555bf /main.go | |
| parent | 8f9726c6e47c2c722137f2d2aabe4c507ece5c14 (diff) | |
new logging
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -58,15 +58,14 @@ func main() { if err != nil { badExit(err) } + verifyUuids(newChats) + listChats(newChats) for _, newChat := range newChats.GetChats() { me.chats.AppendByUuid(newChat) } + listChats(me.chats) - // The verifyUuids function should be run on the main chats object - // after adding the new chats. - if verifyUuids(me.chats) { - me.chats.ConfigSave() - } + me.chats.ConfigSave() okExit("") } |
