[mirotalksfu] - fix typo

هذا الالتزام موجود في:
Miroslav Pejic
2025-09-10 18:41:19 +02:00
الأصل 54e798f6bc
التزام 787aa61da0
2 ملفات معدلة مع 4 إضافات و1 حذوفات

عرض الملف

@@ -974,6 +974,9 @@ module.exports = class Room {
isLobbyEnabled() { isLobbyEnabled() {
return this._isLobbyEnabled || this.globalLobby; return this._isLobbyEnabled || this.globalLobby;
} }
isGlobalLobbyEnabled() {
return this.globalLobby;
}
isHostOnlyRecording() { isHostOnlyRecording() {
return this._hostOnlyRecording; return this._hostOnlyRecording;
} }

عرض الملف

@@ -1923,7 +1923,7 @@ function startServer() {
return cb('isLocked'); return cb('isLocked');
} }
if (room.isLobbyEnabled() && !isPresenter) { if ((room.isLobbyEnabled() || room.isGlobalLobbyEnabled()) && !isPresenter) {
log.debug( log.debug(
'The user is currently waiting to join the room because the lobby is enabled, and they are not a presenter' 'The user is currently waiting to join the room because the lobby is enabled, and they are not a presenter'
); );