From 6286c76904962fd710b93e5a2c55d187528b514b Mon Sep 17 00:00:00 2001 From: Avram Tudor Date: Tue, 12 Jul 2022 14:11:44 +0300 Subject: [PATCH] fix(more-tab) fix crash when quickly selecting settings more tab (#11837) --- react/features/settings/components/web/SettingsDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/settings/components/web/SettingsDialog.js b/react/features/settings/components/web/SettingsDialog.js index f10d28b7e9..a8d372b3ba 100644 --- a/react/features/settings/components/web/SettingsDialog.js +++ b/react/features/settings/components/web/SettingsDialog.js @@ -371,7 +371,7 @@ function _mapStateToProps(state, ownProps) { currentLanguage: tabState?.currentLanguage, hideSelfView: tabState?.hideSelfView, showPrejoinPage: tabState?.showPrejoinPage, - enabledNotifications: tabState?.enabledNotifications, + enabledNotifications: tabState?.enabledNotifications || {}, maxStageParticipants: tabState?.maxStageParticipants }; },