mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
Merge pull request #1883 from appwrite/fix-self-hosted-ports
Fix: Self-hosted ports
This commit is contained in:
@@ -43,7 +43,7 @@ export function getApiEndpoint(region?: string): string {
|
||||
VARS.APPWRITE_ENDPOINT ? VARS.APPWRITE_ENDPOINT : globalThis?.location?.toString()
|
||||
);
|
||||
const protocol = url.protocol;
|
||||
const hostname = url.hostname;
|
||||
const hostname = url.host; // "hostname:port" (or just "hostname" if no port)
|
||||
|
||||
// If instance supports multi-region, add the region subdomain.
|
||||
const subdomain = isMultiRegionSupported(url) ? getSubdomain(region) : '';
|
||||
|
||||
Reference in New Issue
Block a user