5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-22 17:30:26 +00:00

Fix panic when the webhook fails (xmpp) (#1401)

This commit is contained in:
Alexander 2021-02-15 22:18:30 +01:00 committed by GitHub
parent 858cdc86f5
commit ce5140febd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -158,10 +158,15 @@ func (b *Bxmpp) postSlackCompatibleWebhook(msg config.Message) error {
} }
resp, err := http.Post(b.GetString("WebhookURL")+"/"+msg.Channel, "application/json", bytes.NewReader(webhookBody)) resp, err := http.Post(b.GetString("WebhookURL")+"/"+msg.Channel, "application/json", bytes.NewReader(webhookBody))
resp.Body.Close() if err != nil {
b.Log.Errorf("Failed to POST webhook: %s", err)
return err return err
} }
resp.Body.Close()
return nil
}
func (b *Bxmpp) createXMPP() error { func (b *Bxmpp) createXMPP() error {
if !strings.Contains(b.GetString("Jid"), "@") { if !strings.Contains(b.GetString("Jid"), "@") {
return fmt.Errorf("the Jid %s doesn't contain an @", b.GetString("Jid")) return fmt.Errorf("the Jid %s doesn't contain an @", b.GetString("Jid"))