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

Add documentation about breaking API changes for mattermost 3.3.0. Start work on 0.6.0-dev

This commit is contained in:
Wim
2016-08-15 21:11:50 +02:00
parent 32e5f396e7
commit 96e21dd051
3 changed files with 20 additions and 12 deletions

View File

@ -41,7 +41,7 @@ func initFLog() {
flog.xmpp = log.WithFields(log.Fields{"module": "xmpp"})
}
func NewBridge(name string, cfg *config.Config, kind string) *Bridge {
func NewBridge(cfg *config.Config) error {
c := make(chan config.Message)
initFLog()
b := &Bridge{}
@ -57,8 +57,8 @@ func NewBridge(name string, cfg *config.Config, kind string) *Bridge {
}
b.mapChannels()
b.mapIgnores()
go b.handleReceive(c)
return b
b.handleReceive(c)
return nil
}
func (b *Bridge) handleReceive(c chan config.Message) {