From 3f0b9187256e831b2ddfcdcecc80f1edf453db93 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Fri, 10 Dec 2021 00:33:04 +0100 Subject: [PATCH] fix: Point app to personal server... rather than to unreliable heroku server. --- lib/pushToMongo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pushToMongo.js b/lib/pushToMongo.js index 308263c..32ffc16 100644 --- a/lib/pushToMongo.js +++ b/lib/pushToMongo.js @@ -4,7 +4,7 @@ const CONNECTION_IS_ACTIVE = true export async function pushToMongo(data){ if(CONNECTION_IS_ACTIVE){ - let response = await axios.post('http://metaforecast-twitter-bot.herokuapp.com/utility-function-extractor', { + let response = await axios.post('https://server.loki.red/utility-function-extractor', { data: data }) console.log(response)