From 38e39aed6e7392b394b06db60f797843b13ea189 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Tue, 31 Jan 2023 12:32:34 +0100 Subject: [PATCH] Fixed wrong application server url --- openvidu-js/web/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvidu-js/web/app.js b/openvidu-js/web/app.js index 094fd5bf..86fe0b01 100644 --- a/openvidu-js/web/app.js +++ b/openvidu-js/web/app.js @@ -192,7 +192,7 @@ function initMainVideo(videoElement, userData) { * more about the integration of OpenVidu in your application server. */ -var APPLICATION_SERVER_URL = "https://openvidu-ce-2250.openvidu.io/"; +var APPLICATION_SERVER_URL = "http://localhost:5000/"; function getToken(mySessionId) { return createSession(mySessionId).then(sessionId => createToken(sessionId));