Skip to content

Commit 9fd5350

Browse files
authored
newsletter: parse ID, type and timestamp for incoming messages (#742)
1 parent f9f9f52 commit 9fd5350

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

notification.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,12 @@ func (cli *Client) parseNewsletterMessages(node *waBinary.Node) []*types.Newslet
272272
if child.Tag != "message" {
273273
continue
274274
}
275+
ag := child.AttrGetter()
275276
msg := types.NewsletterMessage{
276-
MessageServerID: child.AttrGetter().Int("server_id"),
277+
MessageServerID: ag.Int("server_id"),
278+
MessageID: ag.String("id"),
279+
Type: ag.String("type"),
280+
Timestamp: ag.UnixTime("t"),
277281
ViewsCount: 0,
278282
ReactionCounts: nil,
279283
}

types/newsletter.go

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010
"bytes"
1111
"encoding/json"
1212
"fmt"
13+
"time"
1314

1415
"go.mau.fi/util/jsontime"
1516

@@ -148,6 +149,9 @@ type NewsletterText struct {
148149

149150
type NewsletterMessage struct {
150151
MessageServerID MessageServerID
152+
MessageID MessageID
153+
Type string
154+
Timestamp time.Time
151155
ViewsCount int
152156
ReactionCounts map[string]int
153157

0 commit comments

Comments
 (0)