mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-08-10 02:28:08 +00:00
Do not join Slack channel without API access (slack) (#563)
This commit is contained in:
@@ -147,6 +147,11 @@ func (b *Bslack) Disconnect() error {
|
|||||||
// allow apps or bots to join channels themselves and they need to be invited
|
// allow apps or bots to join channels themselves and they need to be invited
|
||||||
// manually by a user.
|
// manually by a user.
|
||||||
func (b *Bslack) JoinChannel(channel config.ChannelInfo) error {
|
func (b *Bslack) JoinChannel(channel config.ChannelInfo) error {
|
||||||
|
// We can only join a channel through the Slack API.
|
||||||
|
if b.sc == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
b.populateChannels()
|
b.populateChannels()
|
||||||
|
|
||||||
channelInfo, err := b.getChannel(channel.Name)
|
channelInfo, err := b.getChannel(channel.Name)
|
||||||
|
Reference in New Issue
Block a user