aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--webAO/client/aoHost.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/webAO/client/aoHost.ts b/webAO/client/aoHost.ts
index 906d4a6..4501104 100644
--- a/webAO/client/aoHost.ts
+++ b/webAO/client/aoHost.ts
@@ -11,6 +11,7 @@ export const setAOhost = (val: string) => {
console.log("Upgrading asset link to https");
val = val.replace("http:", "https:");
}
-
- AO_HOST = val;
+ if (AO_HOST.length < 5) {
+ AO_HOST = val;
+ }
};