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');