mirror of https://github.com/velour/catbase.git
discord: remove channel whitelist
This commit is contained in:
parent
969cbb37a1
commit
3c0704c57c
|
@ -218,18 +218,5 @@ func (d *Discord) messageCreate(s *discordgo.Session, m *discordgo.MessageCreate
|
||||||
|
|
||||||
log.Debug().Interface("m", m).Interface("msg", msg).Msg("message received")
|
log.Debug().Interface("m", m).Interface("msg", msg).Msg("message received")
|
||||||
|
|
||||||
authorizedChannels := d.config.GetArray("channels", []string{})
|
d.event(d, bot.Message, msg)
|
||||||
|
|
||||||
if in(ch.Name, authorizedChannels) {
|
|
||||||
d.event(d, bot.Message, msg)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func in(s string, lst []string) bool {
|
|
||||||
for _, i := range lst {
|
|
||||||
if s == i {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue