summaryrefslogtreecommitdiff
path: root/doPlayback.go
diff options
context:
space:
mode:
authorCastor Gemini <[email protected]>2025-08-22 02:51:47 -0500
committerJeff Carr <[email protected]>2025-08-22 02:51:47 -0500
commitbffc301568d59d137fba657628eee3d19780e296 (patch)
tree66bbbf4cb571cb08f92b22e7b97fc3d37509f558 /doPlayback.go
parent3d6f228b6e14d87795edf6bc0a8ec8930f34929f (diff)
refactor(gemini): Adapt app to new protobuf structure
- Update main.go and doPlayback.go to be compatible with the refactored 'Chat -> Entries' protobuf message format. - Remove the now-obsolete format_rich_log.go file. - The application now compiles successfully against the new chatpb library.
Diffstat (limited to 'doPlayback.go')
-rw-r--r--doPlayback.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/doPlayback.go b/doPlayback.go
index f39776c..0495ac0 100644
--- a/doPlayback.go
+++ b/doPlayback.go
@@ -12,7 +12,7 @@ func doPlayback() {
// Iterate through the top-level Chat messages, which are now named groups.
for _, chat := range me.chats.GetChats() {
-
+
// Get the number of entries in the chat.
entryCount := len(chat.GetEntries())