aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/googlemeet/webview.js
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-05-26 18:10:17 +0530
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-05-26 20:34:46 +0530
commite05d27ea49929e763906e6c430ec79c1a093dde7 (patch)
tree89cbe160de00b97d45537b0d2fc589244f8a24c7 /recipes/googlemeet/webview.js
parentMinifying images (diff)
downloadferdium-recipes-e05d27ea49929e763906e6c430ec79c1a093dde7.tar.gz
ferdium-recipes-e05d27ea49929e763906e6c430ec79c1a093dde7.tar.zst
ferdium-recipes-e05d27ea49929e763906e6c430ec79c1a093dde7.zip
Replace 'remote' with 'electron/remote'
Bumped up major version for affected recipes to denote breaking changes
Diffstat (limited to 'recipes/googlemeet/webview.js')
-rw-r--r--recipes/googlemeet/webview.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/googlemeet/webview.js b/recipes/googlemeet/webview.js
index 8e91418..332dc1c 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 remote 4 getCurrentWebContents
5} = require('electron'); 5} = require('@electron/remote');
6 6
7const path = require('path'); 7const path = require('path');
8 8
9const webContents = remote.getCurrentWebContents(); 9const webContents = getCurrentWebContents();
10const { 10const {
11 session 11 session
12} = webContents; 12} = webContents;