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 c66e481512572b555192154440f8242ca818b4a0
parent 26b1f380559c1caeea151a1b4a70465d40bc1297
Author: Paco Esteban <paco@onna.be>
Date:   Mon, 15 Jul 2019 13:04:24 +0200

pretier custom messages

Diffstat:
Mhandler.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/handler.go b/handler.go @@ -94,7 +94,7 @@ func customParserFunc(r *http.Request) (string, error) { // contruct alert message var message string - message = "!! " + alert.Title + "\n" + alert.Message + message = "-> " + alert.Title + " <- " + "\n" + alert.Message return message, nil }