From 350284eb0db54c59df1d051a5cac8afabc80b582 Mon Sep 17 00:00:00 2001 From: Bryan Ingle Date: Tue, 2 Apr 2024 12:43:14 -0600 Subject: [PATCH] Update port used to connect to manager server running on localhost --- example/browser/example.js | 2 +- example/browser/js/startup.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example/browser/example.js b/example/browser/example.js index 6aad3e2..d04e6be 100644 --- a/example/browser/example.js +++ b/example/browser/example.js @@ -1037,7 +1037,7 @@ var reset = function (host, system, userId, mode) { let port; let secure; if (host && host === 'localhost') { - port = 3000; + port = 3010; secure = false; } else { port = 443; diff --git a/example/browser/js/startup.js b/example/browser/js/startup.js index 89b3445..5df0f63 100644 --- a/example/browser/js/startup.js +++ b/example/browser/js/startup.js @@ -1283,7 +1283,7 @@ var reset = function(host, system, userId, mode) { let secure; if (host && host === 'localhost') { - port = 3000; + port = 3010; secure = false; } else { port = 443;