aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/lastpass/webview.js
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-06-04 18:44:31 +0530
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-06-04 18:46:15 +0530
commit8d878e9aba3e46f9dadfa6c0de0b403c356b1f20 (patch)
tree84e74e09b1b17cdc439f51c253708bef28fc747f /recipes/lastpass/webview.js
parentConverted from travis builds to GH Actions (diff)
downloadferdium-recipes-8d878e9aba3e46f9dadfa6c0de0b403c356b1f20.tar.gz
ferdium-recipes-8d878e9aba3e46f9dadfa6c0de0b403c356b1f20.tar.zst
ferdium-recipes-8d878e9aba3e46f9dadfa6c0de0b403c356b1f20.zip
Reverted '@electron/remote' changes since the badges were broken for whatsapp and other recipes.
Diffstat (limited to 'recipes/lastpass/webview.js')
-rw-r--r--recipes/lastpass/webview.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/lastpass/webview.js b/recipes/lastpass/webview.js
index 2e67364..2b8fc28 100644
--- a/recipes/lastpass/webview.js
+++ b/recipes/lastpass/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;