diff --git a/striker-ui/components/Display/FullSize.tsx b/striker-ui/components/Display/FullSize.tsx index 18256241..544be304 100644 --- a/striker-ui/components/Display/FullSize.tsx +++ b/striker-ui/components/Display/FullSize.tsx @@ -42,8 +42,8 @@ const VncDisplay = dynamic(() => import('./VncDisplay'), { ssr: false }); // Unit: seconds const DEFAULT_VNC_RECONNECT_TIMER_START = 5; -const buildServerVncUrl = (hostname: string, serverUuid: string) => - `ws://${hostname}/ws/server/vnc/${serverUuid}`; +const buildServerVncUrl = (host: string, serverUuid: string) => + `ws://${host}/ws/server/vnc/${serverUuid}`; const FullSize: FC = ({ onClickCloseButton, @@ -95,7 +95,7 @@ const FullSize: FC = ({ setVncError(false); setRfbConnectArgs({ - url: buildServerVncUrl(window.location.hostname, serverUUID), + url: buildServerVncUrl(window.location.host, serverUUID), }); }, [serverUUID]);