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
1 changed files with 3 additions and 1 deletions

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
}