aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/googlemeet/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/googlemeet/webview.js')
-rw-r--r--recipes/googlemeet/webview.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/recipes/googlemeet/webview.js b/recipes/googlemeet/webview.js
index 8e91418..eb6f7f3 100644
--- a/recipes/googlemeet/webview.js
+++ b/recipes/googlemeet/webview.js
@@ -1,14 +1,12 @@
1"use strict";
2
3const { 1const {
4 remote 2 remote,
5} = require('electron'); 3} = require('electron');
6 4
7const path = require('path'); 5const path = require('path');
8 6
9const webContents = remote.getCurrentWebContents(); 7const webContents = remote.getCurrentWebContents();
10const { 8const {
11 session 9 session,
12} = webContents; 10} = webContents;
13 11
14window.onload = () => { 12window.onload = () => {
@@ -22,7 +20,7 @@ window.onload = () => {
22module.exports = Franz => { 20module.exports = Franz => {
23 session.flushStorageData(); 21 session.flushStorageData();
24 session.clearStorageData({ 22 session.clearStorageData({
25 storages: ['serviceworkers'] 23 storages: ['serviceworkers'],
26 }); 24 });
27 25
28 const getMessages = function getMessages() { 26 const getMessages = function getMessages() {