|
@@ -125,6 +125,8 @@ function mapStateToProps(state) {
|
125
|
125
|
} = state['features/base/conference'];
|
126
|
126
|
const { roomPasswordNumberOfDigits } = state['features/base/config'];
|
127
|
127
|
|
|
128
|
+ const showE2ee = Boolean(e2eeSupported) && isLocalParticipantModerator(state);
|
|
129
|
+
|
128
|
130
|
return {
|
129
|
131
|
_canEditPassword: isLocalParticipantModerator(state),
|
130
|
132
|
_conference: conference,
|
|
@@ -132,7 +134,7 @@ function mapStateToProps(state) {
|
132
|
134
|
_locked: locked,
|
133
|
135
|
_password: password,
|
134
|
136
|
_passwordNumberOfDigits: roomPasswordNumberOfDigits,
|
135
|
|
- _showE2ee: Boolean(e2eeSupported)
|
|
137
|
+ _showE2ee: showE2ee
|
136
|
138
|
};
|
137
|
139
|
}
|
138
|
140
|
|