aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/discord
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2021-12-08 23:40:09 +0530
committerLibravatar GitHub <noreply@github.com>2021-12-08 23:40:09 +0530
commit1e1f9ecc53121749bc99a46bb5aecca51325836f (patch)
treeb52348c59f00ba4d0b8e1390d8f535d63fe90f3d /recipes/discord
parentchore: upgrade 'pnpm' to '6.23.6' (diff)
downloadferdium-recipes-1e1f9ecc53121749bc99a46bb5aecca51325836f.tar.gz
ferdium-recipes-1e1f9ecc53121749bc99a46bb5aecca51325836f.tar.zst
ferdium-recipes-1e1f9ecc53121749bc99a46bb5aecca51325836f.zip
chore: use 'nativeWindowOpen' to see if this resolves issues with opening browser window on clicking links (#786)
(based on https://github.com/TheGoddessInari/hamsket/commit/27226145f7ac0c5acf7aa13e6c8b26687b4e1013\)
Diffstat (limited to 'recipes/discord')
-rw-r--r--recipes/discord/package.json2
-rw-r--r--recipes/discord/webview.js1
2 files changed, 2 insertions, 1 deletions
diff --git a/recipes/discord/package.json b/recipes/discord/package.json
index 175b4ce..cf227cd 100644
--- a/recipes/discord/package.json
+++ b/recipes/discord/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "discord", 2 "id": "discord",
3 "name": "Discord", 3 "name": "Discord",
4 "version": "1.4.5", 4 "version": "1.4.6",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://discordapp.com/login", 7 "serviceURL": "https://discordapp.com/login",
diff --git a/recipes/discord/webview.js b/recipes/discord/webview.js
index cf13cc9..9ad54e8 100644
--- a/recipes/discord/webview.js
+++ b/recipes/discord/webview.js
@@ -49,6 +49,7 @@ module.exports = (Ferdi, settings) => {
49 minWidth: 600, 49 minWidth: 600,
50 webPreferences: { 50 webPreferences: {
51 partition: `persist:service-${settings.id}`, 51 partition: `persist:service-${settings.id}`,
52 nativeWindowOpen: true,
52 // TODO: Aren't these needed here? 53 // TODO: Aren't these needed here?
53 // contextIsolation: false, 54 // contextIsolation: false,
54 // enableRemoteModule: true, 55 // enableRemoteModule: true,