diff options
| author | Jeff Carr <[email protected]> | 2025-09-01 01:55:06 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-01 01:55:06 -0500 |
| commit | c65619154eb37912be8af563de113e028665633c (patch) | |
| tree | 6f305a21a6292c18463bc07bb302cf0b26ed08a3 /doPlayback.go | |
| parent | c63a746d0baa7880c54a0069b03f1924c3be3f46 (diff) | |
sub in the functions
Diffstat (limited to 'doPlayback.go')
| -rw-r--r-- | doPlayback.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doPlayback.go b/doPlayback.go index 2db75ae..8482805 100644 --- a/doPlayback.go +++ b/doPlayback.go @@ -77,9 +77,9 @@ func listChats(chats *chatpb.Chats) { // Get the last chat numChats := len(chats.GetChats()) if numChats > 0 { - lastChat := chats.GetChats()[numChats-1] - log.Printf("The current Gemini API session is UUID: %s\n", lastChat.GetUuid()) - dumpchat(lastChat) + me.lastChat = chats.GetChats()[numChats-1] + log.Printf("The current Gemini API session is UUID: %s\n", me.lastChat.GetUuid()) + dumpchat(me.lastChat) } } |
