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

Fix joining slack/mattermost channels using the webhook

This commit is contained in:
Wim
2016-09-20 12:20:44 +02:00
parent d02a737e0c
commit dce600ad51
2 changed files with 12 additions and 4 deletions

View File

@ -84,7 +84,11 @@ func (b *Bmattermost) FullOrigin() string {
}
func (b *Bmattermost) JoinChannel(channel string) error {
return b.mc.JoinChannel(channel)
// we can only join channels using the API
if b.Config.UseAPI {
return b.mc.JoinChannel(channel)
}
return nil
}
func (b *Bmattermost) Name() string {