mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
Fix panic when the webhook fails (xmpp) (#1401)
This commit is contained in:
parent
858cdc86f5
commit
ce5140febd
@ -158,8 +158,13 @@ func (b *Bxmpp) postSlackCompatibleWebhook(msg config.Message) error {
|
||||
}
|
||||
|
||||
resp, err := http.Post(b.GetString("WebhookURL")+"/"+msg.Channel, "application/json", bytes.NewReader(webhookBody))
|
||||
if err != nil {
|
||||
b.Log.Errorf("Failed to POST webhook: %s", err)
|
||||
return err
|
||||
}
|
||||
|
||||
resp.Body.Close()
|
||||
return err
|
||||
return nil
|
||||
}
|
||||
|
||||
func (b *Bxmpp) createXMPP() error {
|
||||
|
Loading…
Reference in New Issue
Block a user