Commit 32eff55c5ddfb59a31ba954d217f50bfd62a6e83

Authored by Shikha Mishra
1 parent d32525d71b

password required while second user join video issue solved

Showing 1 changed file with 4 additions and 0 deletions   Show diff stats
src/pages/Dashboard/LiveOnlineClass.vue
... ... @@ -251,6 +251,10 @@ export default {
251 251 }, 1000);
252 252 });
253 253  
  254 + _this.api.on("passwordRequired", () => {
  255 + _this.api.executeCommand("password", _this.roomPassword);
  256 + });
  257 +
254 258 _this.api.on("readyToClose", () => {
255 259 // this.$router.push({ name: "Refresh" });
256 260 let jitsi = document.getElementById("jitsi-container");
... ...