[mirotalksfu] - add redirect on leave room, update dep.

هذا الالتزام موجود في:
Miroslav Pejic
2023-10-27 14:20:53 +02:00
الأصل 9c856a0f86
التزام c3e459e999
7 ملفات معدلة مع 35 إضافات و22 حذوفات

عرض الملف

@@ -17,6 +17,7 @@ module.exports = class Room {
this._roomPassword = null;
this._hostOnlyRecording = false;
this.survey = config.survey;
this.redirect = config.redirect;
this.peers = new Map();
this.router = null;
this.createTheRouter();
@@ -110,6 +111,7 @@ module.exports = class Room {
hostOnlyRecording: this._hostOnlyRecording,
},
survey: this.survey,
redirect: this.redirect,
peers: JSON.stringify([...this.peers]),
};
}