From 7bf3e7df1dcfccb1817e05d8fa562be6ca3fab4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Thu, 28 Sep 2023 10:48:06 +0200 Subject: [PATCH] fix(rn,polyfills) remove no longer needed polyfill Fixes: https://github.com/jitsi/jitsi-meet/issues/13807 --- react/features/mobile/polyfills/bundler.js | 8 -------- react/features/mobile/polyfills/index.js | 1 - 2 files changed, 9 deletions(-) delete mode 100644 react/features/mobile/polyfills/bundler.js diff --git a/react/features/mobile/polyfills/bundler.js b/react/features/mobile/polyfills/bundler.js deleted file mode 100644 index e644bebe6f56..000000000000 --- a/react/features/mobile/polyfills/bundler.js +++ /dev/null @@ -1,8 +0,0 @@ -(global => { - - // __filename - if (typeof global.__filename === 'undefined') { - global.__filename = '__filename'; - } - -})(global || window || this); // eslint-disable-line no-invalid-this diff --git a/react/features/mobile/polyfills/index.js b/react/features/mobile/polyfills/index.js index 7e018eb3307f..849fa9349e86 100644 --- a/react/features/mobile/polyfills/index.js +++ b/react/features/mobile/polyfills/index.js @@ -1,3 +1,2 @@ -import './bundler'; import './browser'; import './custom';