summaryrefslogtreecommitdiff
path: root/make_chat.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-22 00:50:31 -0500
committerJeff Carr <[email protected]>2025-08-22 00:50:31 -0500
commit4fd6fd81d352cdec499616485879b1ac48b6f198 (patch)
tree9832814f2004b2397aa900d8f2cdabcc469ed64d /make_chat.go
parentd6f308d94ae78fd4da2ce76d23d9a541d5e79636 (diff)
attempts to debug Marshal() errors
Diffstat (limited to 'make_chat.go')
-rw-r--r--make_chat.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/make_chat.go b/make_chat.go
index d6616a1..b5f62cf 100644
--- a/make_chat.go
+++ b/make_chat.go
@@ -24,7 +24,7 @@ func TestChat() {
r.Fields = []string{"1", "", "2", "3"}
t.Rows = append(t.Rows, r)
- conversation.Append(chat)
+ conversation.AppendNew(chat)
*/
t := conversation.AddTable()
@@ -63,7 +63,7 @@ func (c *Chats) AddTable() *Table {
chat.Table = t
- c.Append(chat)
+ c.AppendNew(chat)
return t
}