summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-22 04:23:28 -0500
committerJeff Carr <[email protected]>2025-08-22 04:23:28 -0500
commiteceb945b9c88d8e7a3456517348507cac07cd15c (patch)
tree88bb8425bf0e0c00162c7930c9c5e942e4635e32 /main.go
parent126495ff38f6932f69d5e2996e16185fc269ed33 (diff)
something new
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.go b/main.go
index 7a10537..8d5b67a 100644
--- a/main.go
+++ b/main.go
@@ -58,13 +58,13 @@ func main() {
if err != nil {
badExit(err)
}
+ verifyUuids(newChats)
+
for _, newChat := range newChats.GetChats() {
me.chats.AppendByUuid(newChat)
}
- if verifyUuids(me.chats) {
- me.chats.ConfigSave()
- }
+ me.chats.ConfigSave()
okExit("")
}