diff options
author | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2024-01-27 14:47:12 +0300 |
---|---|---|
committer | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2024-01-27 14:47:12 +0300 |
commit | c141c4ad2bebe51562be0a7cfe0671f34b0a49fb (patch) | |
tree | 124c7edfc0a19c7b43b8c72989d743b6d3e40568 /xmpp/gateway | |
parent | 599cf16cdbb8567cf2ab1ce42aee5f493884de96 (diff) |
Fix markable
Diffstat (limited to 'xmpp/gateway')
-rw-r--r-- | xmpp/gateway/gateway.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmpp/gateway/gateway.go b/xmpp/gateway/gateway.go index 7d3cbb6..b1bcd69 100644 --- a/xmpp/gateway/gateway.go +++ b/xmpp/gateway/gateway.go @@ -151,7 +151,7 @@ func sendMessageWrapper(to string, from string, body string, id string, componen message.Extensions = append(message.Extensions, stanza.HintNoCopy{}) } if requestReceipt { - message.Extensions = append(message.Extensions, stanza.ReceiptRequest{}) + message.Extensions = append(message.Extensions, stanza.Markable{}) } if isCarbon { |