aboutsummaryrefslogtreecommitdiff
path: root/xmpp/handlers.go
diff options
context:
space:
mode:
authorBohdan Horbeshko <bodqhrohro@gmail.com>2023-03-05 11:00:53 +0300
committerBohdan Horbeshko <bodqhrohro@gmail.com>2023-03-05 11:00:53 +0300
commit4a5b83dff5c568871d5624202e2ee27e5d0de242 (patch)
tree05360ccd21770b830c29ebaacf6ef00787ad1a68 /xmpp/handlers.go
parent6e32c62f8dac5ccc97dd0a6067965ba2689f3c86 (diff)
Show XEP-0461 replies from Telegram
Diffstat (limited to 'xmpp/handlers.go')
-rw-r--r--xmpp/handlers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmpp/handlers.go b/xmpp/handlers.go
index d83fef4..b023bc5 100644
--- a/xmpp/handlers.go
+++ b/xmpp/handlers.go
@@ -106,7 +106,7 @@ func HandleMessage(s xmpp.Sender, p stanza.Packet) {
if err == nil && toJid.Bare() == gatewayJid && (strings.HasPrefix(msg.Body, "/") || strings.HasPrefix(msg.Body, "!")) {
response := session.ProcessTransportCommand(msg.Body, resource)
if response != "" {
- gateway.SendMessage(msg.From, "", response, "", component)
+ gateway.SendServiceMessage(msg.From, response, component)
}
return
}