diff --git a/config.js b/config.js index ff1ee7f18b..3a500d93e3 100644 --- a/config.js +++ b/config.js @@ -1083,9 +1083,6 @@ var config = { // // whether to hide the logo on the deep linking pages. // hideLogo: false, - // // whether to show deeplinking image. - // showImage: false, - // // The ios deeplinking config. // ios: { // appName: 'Jitsi Meet', diff --git a/interface_config.js b/interface_config.js index 82da16bdd6..2f8591c165 100644 --- a/interface_config.js +++ b/interface_config.js @@ -195,8 +195,6 @@ var interfaceConfig = { */ // MOBILE_DOWNLOAD_LINK_ANDROID: 'https://play.google.com/store/apps/details?id=org.jitsi.meet', - // SHOW_DEEP_LINKING_IMAGE: false, - /** * Specify mobile app scheme for opening the app from the mobile browser. */ diff --git a/react/features/base/config/configType.ts b/react/features/base/config/configType.ts index d45189b245..6321fdc8e5 100644 --- a/react/features/base/config/configType.ts +++ b/react/features/base/config/configType.ts @@ -115,7 +115,6 @@ export interface IDeeplinkingConfig { disabled: boolean; hideLogo: boolean; ios?: IDeeplinkingMobileConfig; - showImage: boolean; } export interface IConfig { diff --git a/react/features/base/config/configWhitelist.ts b/react/features/base/config/configWhitelist.ts index da51975583..7024272798 100644 --- a/react/features/base/config/configWhitelist.ts +++ b/react/features/base/config/configWhitelist.ts @@ -82,7 +82,6 @@ export default [ 'debug', 'debugAudioLevels', 'deeplinking.disabled', - 'deeplinking.showImage', 'defaultLocalDisplayName', 'defaultRemoteDisplayName', 'deploymentUrls', diff --git a/react/features/base/config/interfaceConfigWhitelist.ts b/react/features/base/config/interfaceConfigWhitelist.ts index 3c48cd28ed..d8fe2194b2 100644 --- a/react/features/base/config/interfaceConfigWhitelist.ts +++ b/react/features/base/config/interfaceConfigWhitelist.ts @@ -44,7 +44,6 @@ export default [ 'SETTINGS_SECTIONS', 'SHARING_FEATURES', 'SHOW_CHROME_EXTENSION_BANNER', - 'SHOW_DEEP_LINKING_IMAGE', 'SHOW_POWERED_BY', 'SUPPORT_URL', 'TILE_VIEW_MAX_COLUMNS', diff --git a/react/features/base/config/reducer.ts b/react/features/base/config/reducer.ts index dd947e7e07..32410557ed 100644 --- a/react/features/base/config/reducer.ts +++ b/react/features/base/config/reducer.ts @@ -310,7 +310,6 @@ function _translateInterfaceConfig(oldValue: IConfig) { desktop: {} as IDeeplinkingPlatformConfig, hideLogo: false, disabled, - showImage: false, android: {} as IDeeplinkingMobileConfig, ios: {} as IDeeplinkingMobileConfig }; @@ -330,7 +329,6 @@ function _translateInterfaceConfig(oldValue: IConfig) { } deeplinking.hideLogo = Boolean(interfaceConfig.HIDE_DEEP_LINKING_LOGO); - deeplinking.showImage = interfaceConfig.SHOW_DEEP_LINKING_IMAGE; deeplinking.android = { appName: interfaceConfig.NATIVE_APP_NAME, appScheme: interfaceConfig.APP_SCHEME, diff --git a/react/features/deep-linking/components/DeepLinkingMobilePage.web.js b/react/features/deep-linking/components/DeepLinkingMobilePage.web.js index 98cf1f7142..e4a810238c 100644 --- a/react/features/deep-linking/components/DeepLinkingMobilePage.web.js +++ b/react/features/deep-linking/components/DeepLinkingMobilePage.web.js @@ -105,7 +105,7 @@ class DeepLinkingMobilePage extends Component { */ render() { const { - _deeplinkingCfg: { hideLogo, showImage }, + _deeplinkingCfg: { hideLogo }, _mobileConfig: { downloadLink, appName }, _room, t, @@ -145,14 +145,6 @@ class DeepLinkingMobilePage extends Component { }
- { - showImage - ? { - : null - }

{ t(`${_TNS}.appNotInstalled`, { app: appName }) }