|
@@ -225,7 +225,6 @@ class Watermarks extends Component<Props, State> {
|
225
|
225
|
* @returns {Props}
|
226
|
226
|
*/
|
227
|
227
|
function _mapStateToProps(state, ownProps) {
|
228
|
|
- const { isGuest } = state['features/base/jwt'];
|
229
|
228
|
const {
|
230
|
229
|
customizationReady,
|
231
|
230
|
customizationFailed,
|
|
@@ -239,12 +238,11 @@ function _mapStateToProps(state, ownProps) {
|
239
|
238
|
DEFAULT_LOGO_URL,
|
240
|
239
|
JITSI_WATERMARK_LINK,
|
241
|
240
|
SHOW_JITSI_WATERMARK,
|
242
|
|
- SHOW_JITSI_WATERMARK_FOR_GUESTS,
|
243
|
241
|
filmStripOnly
|
244
|
242
|
} = interfaceConfig;
|
245
|
243
|
let _showJitsiWatermark = (!filmStripOnly
|
246
|
244
|
&& (customizationReady && !customizationFailed)
|
247
|
|
- && (SHOW_JITSI_WATERMARK || (isGuest && SHOW_JITSI_WATERMARK_FOR_GUESTS)))
|
|
245
|
+ && SHOW_JITSI_WATERMARK)
|
248
|
246
|
|| !isValidRoom;
|
249
|
247
|
let _logoUrl = logoImageUrl;
|
250
|
248
|
let _logoLink = logoClickUrl;
|