diff options
| author | Castor Gemini <[email protected]> | 2025-08-22 02:51:47 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-22 02:51:47 -0500 |
| commit | bffc301568d59d137fba657628eee3d19780e296 (patch) | |
| tree | 66bbbf4cb571cb08f92b22e7b97fc3d37509f558 /doPlayback.go | |
| parent | 3d6f228b6e14d87795edf6bc0a8ec8930f34929f (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.go | 2 |
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()) |
