aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/googlemeet
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/googlemeet')
-rw-r--r--recipes/googlemeet/package.json2
-rw-r--r--recipes/googlemeet/webview.js6
2 files changed, 4 insertions, 4 deletions
diff --git a/recipes/googlemeet/package.json b/recipes/googlemeet/package.json
index 00fe1fd..ab25baf 100644
--- a/recipes/googlemeet/package.json
+++ b/recipes/googlemeet/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "googlemeet", 2 "id": "googlemeet",
3 "name": "Google Meet", 3 "name": "Google Meet",
4 "version": "2.0.0", 4 "version": "2.0.1",
5 "description": "Google Meet", 5 "description": "Google Meet",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "Patrick Thoelken <patrick.thoelken@outlook.com>", 7 "author": "Patrick Thoelken <patrick.thoelken@outlook.com>",
diff --git a/recipes/googlemeet/webview.js b/recipes/googlemeet/webview.js
index 332dc1c..8e91418 100644
--- a/recipes/googlemeet/webview.js
+++ b/recipes/googlemeet/webview.js
@@ -1,12 +1,12 @@
1"use strict"; 1"use strict";
2 2
3const { 3const {
4 getCurrentWebContents 4 remote
5} = require('@electron/remote'); 5} = require('electron');
6 6
7const path = require('path'); 7const path = require('path');
8 8
9const webContents = getCurrentWebContents(); 9const webContents = remote.getCurrentWebContents();
10const { 10const {
11 session 11 session
12} = webContents; 12} = webContents;