From 5e169bb2acfd8b1ef0700864085e377b5d6164eb Mon Sep 17 00:00:00 2001 From: Daniel Tam Date: Wed, 12 Dec 2018 21:55:47 -0600 Subject: [PATCH] debug async --- bot.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bot.js b/bot.js index c34a1ce..98e1507 100644 --- a/bot.js +++ b/bot.js @@ -229,6 +229,8 @@ async function loadJson(url, auth) { let response; if (auth) { response = await fetch(url, auth); + sendToBotTestingChannel(url); + sendToBotTestingChannel(auth); } else { response = await fetch(url); }