2
0
mirror of https://github.com/42wim/matterbridge synced 2024-11-11 01:10:38 +00:00

Remove ununsed function (slack)

This commit is contained in:
Wim 2018-07-13 23:28:23 +02:00
parent e04dd78624
commit 618953c865

View File

@ -235,6 +235,7 @@ func (b *Bslack) getAvatar(user string) string {
return avatar return avatar
} }
/*
func (b *Bslack) getChannelByName(name string) (*slack.Channel, error) { func (b *Bslack) getChannelByName(name string) (*slack.Channel, error) {
if b.channels == nil { if b.channels == nil {
return nil, fmt.Errorf("%s: channel %s not found (no channels found)", b.Account, name) return nil, fmt.Errorf("%s: channel %s not found (no channels found)", b.Account, name)
@ -246,6 +247,7 @@ func (b *Bslack) getChannelByName(name string) (*slack.Channel, error) {
} }
return nil, fmt.Errorf("%s: channel %s not found", b.Account, name) return nil, fmt.Errorf("%s: channel %s not found", b.Account, name)
} }
*/
func (b *Bslack) getChannelByID(ID string) (*slack.Channel, error) { func (b *Bslack) getChannelByID(ID string) (*slack.Channel, error) {
if b.channels == nil { if b.channels == nil {