File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -272,8 +272,12 @@ func (cli *Client) parseNewsletterMessages(node *waBinary.Node) []*types.Newslet
272
272
if child .Tag != "message" {
273
273
continue
274
274
}
275
+ ag := child .AttrGetter ()
275
276
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" ),
277
281
ViewsCount : 0 ,
278
282
ReactionCounts : nil ,
279
283
}
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import (
10
10
"bytes"
11
11
"encoding/json"
12
12
"fmt"
13
+ "time"
13
14
14
15
"go.mau.fi/util/jsontime"
15
16
@@ -148,6 +149,9 @@ type NewsletterText struct {
148
149
149
150
type NewsletterMessage struct {
150
151
MessageServerID MessageServerID
152
+ MessageID MessageID
153
+ Type string
154
+ Timestamp time.Time
151
155
ViewsCount int
152
156
ReactionCounts map [string ]int
153
157
You can’t perform that action at this time.
0 commit comments