fix(more-tab) fix crash when quickly selecting settings more tab (#11837)

This commit is contained in:
Avram Tudor 2022-07-12 14:11:44 +03:00 committed by GitHub
parent 780019a711
commit 6286c76904
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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
};
},