5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-22 15:10:28 +00:00

Ignore error on private channel join (slack) Fixes #150

This commit is contained in:
Wim 2017-04-17 18:01:24 +02:00
parent 4d2207aba7
commit 246c8e4f74

View File

@ -79,9 +79,11 @@ func (b *Bslack) JoinChannel(channel string) error {
}
_, err := b.sc.JoinChannel(channel)
if err != nil {
if err.Error() != "name_taken" {
return err
}
}
}
return nil
}