aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gotomeeting/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/gotomeeting/index.js')
-rw-r--r--recipes/gotomeeting/index.js14
1 files changed, 9 insertions, 5 deletions
diff --git a/recipes/gotomeeting/index.js b/recipes/gotomeeting/index.js
index fa15a16..ec47fa5 100644
--- a/recipes/gotomeeting/index.js
+++ b/recipes/gotomeeting/index.js
@@ -1,5 +1,9 @@
1module.exports = Ferdium => class Gotomeeting extends Ferdium { 1module.exports = Ferdium =>
2 overrideUserAgent() { 2 class Gotomeeting extends Ferdium {
3 return window.navigator.userAgent.replace(/(Ferdium|Electron)\/\S+ \([^)]+\)/g, ''); 3 overrideUserAgent() {
4 } 4 return window.navigator.userAgent.replaceAll(
5}; 5 /(Ferdium|Electron)\/\S+ \([^)]+\)/g,
6 '',
7 );
8 }
9 };