Fixed space in botSay
This commit is contained in:
parent
d01765e3cb
commit
211a00ddaf
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
@ -157,7 +157,7 @@ bot.addListener('error', function (message) {
|
|||
* @param {Boolean} dontDisplayRadio
|
||||
*/
|
||||
const botSay = (where, what, dontDisplayRadio) => {
|
||||
const message = `${(!dontDisplayRadio ? `${process.env.RADIO_ALIAS} : ` : '')} ${what}`
|
||||
const message = `${(!dontDisplayRadio ? `${process.env.RADIO_ALIAS} : ` : '')}${what}`
|
||||
bot.say(where, message)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue