From 32eff55c5ddfb59a31ba954d217f50bfd62a6e83 Mon Sep 17 00:00:00 2001 From: Shikha Mishra Date: Tue, 1 Sep 2020 10:59:12 +0530 Subject: [PATCH] password required while second user join video issue solved --- src/pages/Dashboard/LiveOnlineClass.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/Dashboard/LiveOnlineClass.vue b/src/pages/Dashboard/LiveOnlineClass.vue index 1c3440c..59548ff 100644 --- a/src/pages/Dashboard/LiveOnlineClass.vue +++ b/src/pages/Dashboard/LiveOnlineClass.vue @@ -251,6 +251,10 @@ export default { }, 1000); }); + _this.api.on("passwordRequired", () => { + _this.api.executeCommand("password", _this.roomPassword); + }); + _this.api.on("readyToClose", () => { // this.$router.push({ name: "Refresh" }); let jitsi = document.getElementById("jitsi-container"); -- 2.0.0