From 649ace1f44aaaccc29c62f4dbe35aad10a363cd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Tue, 12 Jul 2022 16:49:43 +0200 Subject: [PATCH] chore(config) remove legacy comment --- react/features/base/config/reducer.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/react/features/base/config/reducer.ts b/react/features/base/config/reducer.ts index 385edc983..c1948e2cb 100644 --- a/react/features/base/config/reducer.ts +++ b/react/features/base/config/reducer.ts @@ -149,13 +149,6 @@ function _getInitialState() { * @returns {Object} The new state after the reduction of the specified action. */ function _setConfig(state: IConfig, { config }: {config: IConfig}) { - // The mobile app bundles jitsi-meet and lib-jitsi-meet at build time and - // does not download them at runtime from the deployment on which it will - // join a conference. The downloading is planned for implementation in the - // future (later rather than sooner) but is not implemented yet at the time - // of this writing and, consequently, we must provide legacy support in the - // meantime. - // eslint-disable-next-line no-param-reassign config = _translateLegacyConfig(config);