diff options
| author | Jeff Carr <[email protected]> | 2025-08-22 04:35:14 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-22 04:35:14 -0500 |
| commit | 24f9157d50ffdcc8350367dfe087b3ce9b49d766 (patch) | |
| tree | 21bb3b478045a12d7641f3f038cc8ecc4afd1c2b | |
| parent | 0e6bc3698454cfa718d127880bb7dc89486102b1 (diff) | |
blah
| -rw-r--r-- | doPlayback.go | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/doPlayback.go b/doPlayback.go index 2711598..33f57ec 100644 --- a/doPlayback.go +++ b/doPlayback.go @@ -23,10 +23,16 @@ func showChat(uuid string) { log.Info("unknown uuid", uuid) return } - listEntries(chat) } func listChats(chats *chatpb.Chats) { + if argv.Playback.Long != nil { + for _, chat := range chats.GetChats() { + listEntries(chat) + } + return + } + log.Infof("Found %d chat topic(s) in the log.", len(chats.GetChats())) fmt.Println("-------------------------------------------------") |
