Browse Source

fix(rn) fixes typo in functions.native

factor2
tmoldovan8x8 2 years ago
parent
commit
b83c55e9c4
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      react/features/base/config/functions.native.ts

+ 1
- 1
react/features/base/config/functions.native.ts View File

15
  * @returns {void}
15
  * @returns {void}
16
  */
16
  */
17
 export function _cleanupConfig(config: IConfig) {
17
 export function _cleanupConfig(config: IConfig) {
18
-    config.analytics ??= {};
18
+    config.analytics = {};
19
     config.analytics.scriptURLs = [];
19
     config.analytics.scriptURLs = [];
20
     if (NativeModules.AppInfo.LIBRE_BUILD) {
20
     if (NativeModules.AppInfo.LIBRE_BUILD) {
21
         delete config.analytics?.amplitudeAPPKey;
21
         delete config.analytics?.amplitudeAPPKey;

Loading…
Cancel
Save