Skip to content

Commit 2c51c68

Browse files
committed
receipt: include type in message acks
1 parent 01523b1 commit 2c51c68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

receipt.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ func (cli *Client) sendAck(node *waBinary.Node) {
119119
if recipient, ok := node.Attrs["recipient"]; ok {
120120
attrs["recipient"] = recipient
121121
}
122-
if receiptType, ok := node.Attrs["type"]; node.Tag != "message" && ok {
122+
if receiptType, ok := node.Attrs["type"]; ok {
123123
attrs["type"] = receiptType
124124
}
125125
err := cli.sendNode(waBinary.Node{

0 commit comments

Comments
 (0)