4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-07-16 02:08:55 +00:00

Fail when bridge is unable to join a channel (general)

This commit is contained in:
Wim
2017-03-16 23:05:11 +01:00
parent 9407aa4600
commit fd8cfb11fb
2 changed files with 16 additions and 4 deletions

View File

@ -48,7 +48,10 @@ func (gw *Gateway) AddBridge(cfg *config.Bridge) error {
if err != nil {
return fmt.Errorf("Bridge %s failed to start: %v", br.Account, err)
}
br.JoinChannels()
err = br.JoinChannels()
if err != nil {
return fmt.Errorf("Bridge %s failed to join channel: %v", br.Account, err)
}
return nil
}