~ekez/negativefour

4157f873eb4510cc09b3cd5f502f332530d502c5 — Zeke Medley 3 years ago 1e3d846
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})`)