aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/whatsapp
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/whatsapp
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/whatsapp')
-rw-r--r--recipes/whatsapp/package.json2
-rw-r--r--recipes/whatsapp/webview.js6
2 files changed, 4 insertions, 4 deletions
diff --git a/recipes/whatsapp/package.json b/recipes/whatsapp/package.json
index e9c4bf4..90c68aa 100644
--- a/recipes/whatsapp/package.json
+++ b/recipes/whatsapp/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "whatsapp", 2 "id": "whatsapp",
3 "name": "WhatsApp", 3 "name": "WhatsApp",
4 "version": "3.0.0", 4 "version": "3.0.1",
5 "description": "WhatsApp", 5 "description": "WhatsApp",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "Stefan Malzner <stefan@adlk.io>", 7 "author": "Stefan Malzner <stefan@adlk.io>",
diff --git a/recipes/whatsapp/webview.js b/recipes/whatsapp/webview.js
index 5dd3729..8320d9e 100644
--- a/recipes/whatsapp/webview.js
+++ b/recipes/whatsapp/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;