config: remove old backwards compatibility shim

It was added for
3ea2f00578
over 2 years ago. That's long enough!
This commit is contained in:
Saúl Ibarra Corretgé 2019-07-25 10:59:03 +02:00 committed by Saúl Ibarra Corretgé
parent aca0469bd0
commit 35f934e197
1 changed files with 1 additions and 8 deletions

View File

@ -158,23 +158,16 @@ function _setConfig(state, { config }) {
* supported by jitsi-meet.
*/
function _translateLegacyConfig(oldValue: Object) {
// jitsi/jitsi-meet#3ea2f005787c9f49c48febaeed9dc0340fe0a01b
let newValue = oldValue;
const oldConfigToNewConfig = {
p2p: [
[ 'backToP2PDelay', 'backToP2PDelay' ],
[ 'enableP2P', 'enabled' ],
[ 'p2pStunServers', 'stunServers' ]
],
analytics: [
[ 'analyticsScriptUrls', 'scriptURLs' ],
[ 'googleAnalyticsTrackingId', 'googleAnalyticsTrackingId' ]
]
};
// Translate the old config properties into the new config.p2p properties.
// Translate the old config properties into the new config properties.
Object.keys(oldConfigToNewConfig).forEach(section => {
if (typeof oldValue[section] !== 'object') {
newValue = set(newValue, section, {});