From 211a00ddaf2f9c373c139620bd5f76af1fa1dd03 Mon Sep 17 00:00:00 2001 From: dbroqua Date: Fri, 10 Jan 2020 09:09:26 +0100 Subject: [PATCH] Fixed space in botSay --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 2bdc05d..3a3ecb8 100644 --- a/index.js +++ b/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) }