aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/lastpass
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/lastpass')
-rw-r--r--recipes/lastpass/package.json4
-rw-r--r--recipes/lastpass/webview.js8
2 files changed, 6 insertions, 6 deletions
diff --git a/recipes/lastpass/package.json b/recipes/lastpass/package.json
index a551edf..38e5cfd 100644
--- a/recipes/lastpass/package.json
+++ b/recipes/lastpass/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "lastpass", 2 "id": "lastpass",
3 "name": "LastPass", 3 "name": "LastPass",
4 "version": "1.0.0", 4 "version": "2.0.0",
5 "description": "LastPass integration", 5 "description": "LastPass integration",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "Janis Hau <janis@my-new.me>, Jonathan Winter <jonathanhwinter@gmail.com>", 7 "author": "Janis Hau <janis@my-new.me>, Jonathan Winter <jonathanhwinter@gmail.com>",
@@ -11,4 +11,4 @@
11 "hasNotificationSound": true, 11 "hasNotificationSound": true,
12 "message": "LastPass" 12 "message": "LastPass"
13 } 13 }
14} \ No newline at end of file 14}
diff --git a/recipes/lastpass/webview.js b/recipes/lastpass/webview.js
index 4fdd007..2e67364 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 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;
@@ -47,4 +47,4 @@ module.exports = Franz => {
47 47
48 Franz.injectCSS(path.join(__dirname, 'service.css')); 48 Franz.injectCSS(path.join(__dirname, 'service.css'));
49 Franz.loop(getMessages); 49 Franz.loop(getMessages);
50}; \ No newline at end of file 50};