4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-06-26 23:29:25 +00:00

Refactor to handle disconnects/reconnects better.

Now try to reconnect every 60 seconds until forever.
This commit is contained in:
Wim
2017-02-14 21:12:02 +01:00
parent 2d16fd085e
commit 163f55f9c2
11 changed files with 99 additions and 24 deletions

View File

@ -49,6 +49,11 @@ func (b *Brocketchat) Connect() error {
return nil
}
func (b *Brocketchat) Disconnect() error {
return nil
}
func (b *Brocketchat) JoinChannel(channel string) error {
return nil
}