|
|
@@ -689,7 +689,9 @@ UI.updateLocalRole = function (isModerator) {
|
|
689
|
689
|
SettingsMenu.showFollowMeOptions(isModerator);
|
|
690
|
690
|
|
|
691
|
691
|
if (isModerator) {
|
|
692
|
|
- messageHandler.notify(null, "notify.me", 'connected', "notify.moderator");
|
|
|
692
|
+ if (!interfaceConfig.DISABLE_FOCUS_INDICATOR)
|
|
|
693
|
+ messageHandler
|
|
|
694
|
+ .notify(null, "notify.me", 'connected', "notify.moderator");
|
|
693
|
695
|
|
|
694
|
696
|
Recording.checkAutoRecord();
|
|
695
|
697
|
}
|
|
|
@@ -703,7 +705,9 @@ UI.updateLocalRole = function (isModerator) {
|
|
703
|
705
|
UI.updateUserRole = function (user) {
|
|
704
|
706
|
VideoLayout.showModeratorIndicator();
|
|
705
|
707
|
|
|
706
|
|
- if (!user.isModerator()) {
|
|
|
708
|
+ // We don't need to show moderator notifications when the focus (moderator)
|
|
|
709
|
+ // indicator is disabled.
|
|
|
710
|
+ if (!user.isModerator() || interfaceConfig.DISABLE_FOCUS_INDICATOR) {
|
|
707
|
711
|
return;
|
|
708
|
712
|
}
|
|
709
|
713
|
|