diff --git a/server/src/controllers/http/Web.ts b/server/src/controllers/http/Web.ts index 2c39678..bdadd7b 100644 --- a/server/src/controllers/http/Web.ts +++ b/server/src/controllers/http/Web.ts @@ -20,9 +20,9 @@ export class WebController { let wsUrl = ''; if (config.webWsBaseUrl) { - wsUrl = `${config.webWsBaseUrl}/ws`; + wsUrl = `${config.webWsBaseUrl}/ws/`; } else { - wsUrl = '/ws'; + wsUrl = '/ws/'; } let clientWsDomain = config.clientWsBaseUrl || config.webWsBaseUrl;