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 {

View File

@ -68,9 +68,13 @@ func (b *Bslack) FullOrigin() string {
}
func (b *Bslack) JoinChannel(channel string) error {
schannel := b.getChannelByName(channel)
if schannel != nil && !schannel.IsMember {
b.sc.JoinChannel(schannel.ID)
// we can only join channels using the API
if b.Config.UseAPI {
schannel := b.getChannelByName(channel)
if schannel != nil && !schannel.IsMember {
_, err := b.sc.JoinChannel(schannel.ID)
return err
}
}
return nil
}