This commit is contained in:
hailin 2025-06-15 20:35:27 +08:00
parent 1734b7bd85
commit 870e77efdf
1 changed files with 3 additions and 0 deletions

View File

@ -206,6 +206,9 @@ export async function getWsBase() {
ip = hostHeader.includes(":") ? hostHeader.split(":")[0] : hostHeader;
}
}
const finalUrl = `${wsProtocol}://${ip}/api/v1/deploy/ws`;
console.log(".........[WebSocket] Final URL:", finalUrl);
return `${wsProtocol}://${ip}/api/v1/deploy/ws`;
}