From bae2d3d36da5cc1f68684f3c6a8bb92fc77b2043 Mon Sep 17 00:00:00 2001 From: Aztup <38fight.gaming06@gmail.com> Date: Wed, 22 May 2024 09:51:29 +0200 Subject: [PATCH] fix neptune breaking on latest Tidal version (2.37.8) --- injector/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/injector/index.js b/injector/index.js index 40103e1..cae7b2b 100644 --- a/injector/index.js +++ b/injector/index.js @@ -187,6 +187,7 @@ const ProxiedBrowserWindow = new Proxy(electron.BrowserWindow, { // Shhh. I can feel your judgement from here. It's okay. Let it out. Everything will be alright in the end. options.webPreferences.contextIsolation = false; options.webPreferences.nodeIntegration = true; + options.webPreferences.sandbox = false; // Allows local plugin loading options.webPreferences.allowDisplayingInsecureContent = true;