From 678942d1449817c1f2c258fa1c28cd49fb0e5022 Mon Sep 17 00:00:00 2001 From: Andrew Gundersen Date: Mon, 6 Jun 2022 12:01:21 -0500 Subject: [PATCH] Updated port --- src/config.js | 4 ++-- src/session.js | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/config.js b/src/config.js index 3537600..3211b79 100644 --- a/src/config.js +++ b/src/config.js @@ -6,6 +6,6 @@ const DOMAIN = "crimata.com"; const prod = process.env.PROD; module.exports = { - PLATFORM: prod ? `https://app.${DOMAIN}` : `http://localhost:8760`, - API: prod ? `https://${DOMAIN}/api` : `http://localhost:8761` + PLATFORM: prod ? `https://app.${DOMAIN}` : `http://localhost:5000`, + API: prod ? `https://${DOMAIN}/api` : `http://localhost:5001` } diff --git a/src/session.js b/src/session.js index 883be16..f5aa0e1 100644 --- a/src/session.js +++ b/src/session.js @@ -29,6 +29,8 @@ function handleMessageQueue() // { const update = messageQueue.shift(); + console.log(update); + if (update) { if (update.person) -- 2.43.0