diff --git a/app/src/Server.js b/app/src/Server.js
index f5030fb7..f78c509c 100644
--- a/app/src/Server.js
+++ b/app/src/Server.js
@@ -64,7 +64,7 @@ dev dependencies: {
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
- * @version 1.7.92
+ * @version 1.7.93
*
*/
diff --git a/package.json b/package.json
index 3ab1ed87..3af3fa68 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "mirotalksfu",
- "version": "1.7.92",
+ "version": "1.7.93",
"description": "WebRTC SFU browser-based video calls",
"main": "Server.js",
"scripts": {
diff --git a/public/js/Brand.js b/public/js/Brand.js
index e653cd7d..f3ddefe3 100644
--- a/public/js/Brand.js
+++ b/public/js/Brand.js
@@ -64,7 +64,7 @@ let BRAND = {
},
about: {
imageUrl: '../images/mirotalk-logo.gif',
- title: 'WebRTC SFU v1.7.92',
+ title: 'WebRTC SFU v1.7.93',
html: `
diff --git a/public/js/RoomClient.js b/public/js/RoomClient.js
index f207bbbd..879466aa 100644
--- a/public/js/RoomClient.js
+++ b/public/js/RoomClient.js
@@ -9,7 +9,7 @@
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
- * @version 1.7.92
+ * @version 1.7.93
*
*/
@@ -7101,13 +7101,15 @@ class RoomClient {
this.userLog('info', `${icons.room} BROADCASTING ${isBroadcastingEnabled ? 'On' : 'Off'}`, 'top-end');
break;
case 'lock':
+ if (!isPresenter) return;
this.sound('locked');
this.event(_EVENTS.roomLock);
this.userLog('info', `${icons.lock} LOCKED the room by the password`, 'top-end');
break;
case 'unlock':
- this.event(_EVENTS.roomUnlock);
+ if (!isPresenter) return;
this.userLog('info', `${icons.unlock} UNLOCKED the room`, 'top-end');
+ this.event(_EVENTS.roomUnlock);
break;
case 'lobbyOn':
this.event(_EVENTS.lobbyOn);
@@ -7249,6 +7251,7 @@ class RoomClient {
switch (data.password) {
case 'OK':
this.joinAllowed(data.room);
+ handleRules(isPresenter);
break;
case 'KO':
this.roomIsLocked();