diff --git a/interface_config.js b/interface_config.js index 994710884..52e05aed0 100644 --- a/interface_config.js +++ b/interface_config.js @@ -186,7 +186,6 @@ var interfaceConfig = { SHOW_JITSI_WATERMARK: true, SHOW_POWERED_BY: false, SHOW_PROMOTIONAL_CLOSE_PAGE: false, - SHOW_WATERMARK_FOR_GUESTS: true, // if watermark is disabled by default, it can be shown only for guests /* * If indicated some of the error dialogs may point to the support URL for diff --git a/react/features/base/react/components/web/Watermarks.js b/react/features/base/react/components/web/Watermarks.js index 6d60248ac..dcb37ccae 100644 --- a/react/features/base/react/components/web/Watermarks.js +++ b/react/features/base/react/components/web/Watermarks.js @@ -225,7 +225,6 @@ class Watermarks extends Component { * @returns {Props} */ function _mapStateToProps(state, ownProps) { - const { isGuest } = state['features/base/jwt']; const { customizationReady, customizationFailed, @@ -239,12 +238,11 @@ function _mapStateToProps(state, ownProps) { DEFAULT_LOGO_URL, JITSI_WATERMARK_LINK, SHOW_JITSI_WATERMARK, - SHOW_JITSI_WATERMARK_FOR_GUESTS, filmStripOnly } = interfaceConfig; let _showJitsiWatermark = (!filmStripOnly && (customizationReady && !customizationFailed) - && (SHOW_JITSI_WATERMARK || (isGuest && SHOW_JITSI_WATERMARK_FOR_GUESTS))) + && SHOW_JITSI_WATERMARK) || !isValidRoom; let _logoUrl = logoImageUrl; let _logoLink = logoClickUrl;