fixup! `WEBHOOOK_URL` => `WEBHOOK_URL`
1 files changed, 1 insertions(+), 1 deletions(-) M serve/app.js
M serve/app.js => serve/app.js +1 -1
@@ 15,7 15,7 @@ app.use(express.json()) // Sends a message to the zekebots discord channel. Doesn't wait for // the message to send and logs an error / success message as needed. const sendDiscordAlert = message => { axios.post(process.env.WEBHOOOK_URL, { axios.post(process.env.WEBHOOK_URL, { content: message }).then(function (response) { console.log(`=> discord: (${message})`)