Removed duplicate check

This commit is contained in:
dbroqua 2020-01-07 09:57:58 +01:00
parent a885a3208c
commit f140943545

View File

@ -8,7 +8,6 @@ const When = require('./libs/When')
const Statistics = require('./libs/Statistics')
const List = require('./libs/List')
const Preferences = require('./libs/Preferences')
const allowedCommands = ['!artist', '!song', '!stats', '!when', '!help', '!notifications', '!list']
// Init des librairies
const artistSong = new ArtistSong(models)
@ -171,8 +170,6 @@ const actions = (where, message, from) => {
// Le message publié est pour le bot
if (exploded[0].indexOf(process.env.IRC_NICKNAME) === 0) {
// Le message contient une commande
if (allowedCommands.indexOf(exploded[1]) !== -1) {
switch (exploded[1]) {
case '!artist':
case '!song':
@ -197,10 +194,8 @@ const actions = (where, message, from) => {
botSay(where, `${process.env.RADIO_ALIAS} : ${process.env.PUBLIC_RADIO_STREAM}`)
break
default:
break
}
} else {
botSay(where, 'Commande inconnue, tape !help si tu es perdu')
break
}
}
}