Fix httpBase adding a : . Fixes #56

This commit is contained in:
Dessalines 2020-10-13 15:43:05 -05:00
parent 52b5d32fde
commit ecb54ed43d
1 changed files with 3 additions and 3 deletions

View File

@ -4,9 +4,9 @@ const testHost = 'localhost:8536';
const internalHost = process.env.LEMMY_INTERNAL_HOST || testHost; // used for local dev const internalHost = process.env.LEMMY_INTERNAL_HOST || testHost; // used for local dev
export const externalHost = isBrowser() export const externalHost = isBrowser()
? `${window.location.hostname}:${ ? `${window.location.hostname}${
window.location.port == '1234' || window.location.port == '1235' ['1234', '1235'].includes(window.location.port)
? 8536 ? ':8536'
: window.location.port : window.location.port
}` }`
: process.env.LEMMY_EXTERNAL_HOST || testHost; : process.env.LEMMY_EXTERNAL_HOST || testHost;