From ecb54ed43dc250aaba4b5ada968859c640f2687a Mon Sep 17 00:00:00 2001
From: Dessalines <tyhou13@gmx.com>
Date: Tue, 13 Oct 2020 15:43:05 -0500
Subject: [PATCH] Fix httpBase adding a : . Fixes #56

---
 src/shared/env.ts | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/shared/env.ts b/src/shared/env.ts
index 0490e2c..b4aae60 100644
--- a/src/shared/env.ts
+++ b/src/shared/env.ts
@@ -4,9 +4,9 @@ const testHost = 'localhost:8536';
 
 const internalHost = process.env.LEMMY_INTERNAL_HOST || testHost; // used for local dev
 export const externalHost = isBrowser()
-  ? `${window.location.hostname}:${
-      window.location.port == '1234' || window.location.port == '1235'
-        ? 8536
+  ? `${window.location.hostname}${
+      ['1234', '1235'].includes(window.location.port)
+        ? ':8536'
         : window.location.port
     }`
   : process.env.LEMMY_EXTERNAL_HOST || testHost;
-- 
2.44.1