summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rw-r--r--main.go7
2 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index b194e72..8c8ff28 100644
--- a/Makefile
+++ b/Makefile
@@ -49,3 +49,4 @@ identify-protobuf:
playback:
gemini playback
+ gemini playback --uuid a1b2c3d4-e5f6-4a5b-8c9d-1e2f3a4b5c6d
diff --git a/main.go b/main.go
index 2f0b5ae..7a10537 100644
--- a/main.go
+++ b/main.go
@@ -58,14 +58,13 @@ func main() {
if err != nil {
badExit(err)
}
- verifyUuids(newChats)
- listChats(newChats)
for _, newChat := range newChats.GetChats() {
me.chats.AppendByUuid(newChat)
}
- listChats(me.chats)
- me.chats.ConfigSave()
+ if verifyUuids(me.chats) {
+ me.chats.ConfigSave()
+ }
okExit("")
}