From 92ab1b1c850f5e386737e7af048d6a1ed4a05a25 Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Fri, 11 Mar 2022 17:11:48 -0700 Subject: fixed mismatch issue --- twitch-bot/bot.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/twitch-bot/bot.js b/twitch-bot/bot.js index b81830c..cdc9780 100644 --- a/twitch-bot/bot.js +++ b/twitch-bot/bot.js @@ -11,7 +11,7 @@ fs.readFile('./settings.json', 'utf8', (err, data) => { // parse JSON string to JSON object const settings = JSON.parse(data); } -} +}); fs.readFile('./reacts.json', 'utf8', (err, data) => { if (err) { @@ -21,7 +21,7 @@ fs.readFile('./reacts.json', 'utf8', (err, data) => { // parse JSON string to JSON object const reacts = JSON.parse(data); } -} +}); fs.readFile('./commands.json', 'utf8', (err, data) => { if (err) { @@ -31,7 +31,7 @@ fs.readFile('./commands.json', 'utf8', (err, data) => { // parse JSON string to JSON object const commands = JSON.parse(data); } -} +}); fs.readFile('./mod_commands.json', 'utf8', (err, data) => { if (err) { @@ -41,7 +41,7 @@ fs.readFile('./mod_commands.json', 'utf8', (err, data) => { // parse JSON string to JSON object const mod_commands = JSON.parse(data); } -} +}); const opts = { identity: { -- cgit v1.2.3