From 6f33bf5def551dc53325082fc74c87c8dab6b9eb Mon Sep 17 00:00:00 2001 From: pabloFuente Date: Wed, 14 Oct 2020 11:45:58 +0200 Subject: [PATCH] Dashboard: update info path from /info to /openvidu/info --- .../src/app/components/dashboard/dashboard.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvidu-server/src/dashboard/src/app/components/dashboard/dashboard.component.ts b/openvidu-server/src/dashboard/src/app/components/dashboard/dashboard.component.ts index 4e896042..fe0b5787 100644 --- a/openvidu-server/src/dashboard/src/app/components/dashboard/dashboard.component.ts +++ b/openvidu-server/src/dashboard/src/app/components/dashboard/dashboard.component.ts @@ -47,7 +47,7 @@ export class DashboardComponent implements OnInit, OnDestroy { const protocol = location.protocol.includes('https') ? 'wss://' : 'ws://'; const port = (location.port) ? (':' + location.port) : ''; - this.websocket = new WebSocket(protocol + location.hostname + port + '/info'); + this.websocket = new WebSocket(protocol + location.hostname + port + '/openvidu/info'); this.websocket.onopen = (event) => { console.log('Info websocket connected');