5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-10 05:20:25 +00:00

Use a better check to join channel (slack)

This commit is contained in:
Wim 2018-01-02 14:31:44 +01:00
parent 04f8013314
commit 50bd51e461

View File

@ -107,7 +107,7 @@ func (b *Bslack) Disconnect() error {
func (b *Bslack) JoinChannel(channel config.ChannelInfo) error {
// we can only join channels using the API
if b.Config.WebhookURL == "" && b.Config.WebhookBindAddress == "" {
if b.sc != nil {
if strings.HasPrefix(b.Config.Token, "xoxb") {
// TODO check if bot has already joined channel
return nil