]> Untitled Git - lemmy-ui.git/commitdiff
Fix httpBase adding a : . Fixes #56
authorDessalines <tyhou13@gmx.com>
Tue, 13 Oct 2020 20:43:05 +0000 (15:43 -0500)
committerDessalines <tyhou13@gmx.com>
Tue, 13 Oct 2020 20:43:05 +0000 (15:43 -0500)
src/shared/env.ts

index 0490e2c6dbb84dab82d6033c6b5130c511e60f27..b4aae603998066300db79c8190c6d6c5182de8d1 100644 (file)
@@ -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;