xmpp-webhook

webhook to xmpp gateway (clone of https://github.com/opthomas-prime/xmpp-webhook/ with my own mods)
git clone https://git.e1e0.net/xmpp-webhook.git
Log | Files | Refs | README | LICENSE

commit e855de21b8f46c3e2f81260148fb15039a373d24
parent 8346a22028059186e1c9617ca263d1c722ee8142
Author: Paco Esteban <paco@onna.be>
Date:   Mon, 15 Jul 2019 12:24:24 +0200

I prefer chat type messages

Diffstat:
Mmain.go | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/main.go b/main.go @@ -68,6 +68,7 @@ func main() { xc.Out <- xmpp.Message{ To: m.From, Body: m.Body, + Type: "chat", } } } @@ -89,6 +90,7 @@ func main() { Value: m, }, }, + Type: "chat", } } }