From 823cd2fc4309e5aab43dde9a2595fa5ae96f0197 Mon Sep 17 00:00:00 2001 From: Thomas Weber Date: Sun, 17 Nov 2024 00:19:16 -0600 Subject: [PATCH] Grant persistent-storage permission to project-running-window This seems to already be effectively the default in Electron, but let's explicitly grant the request. --- src-main/windows/project-running-window.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src-main/windows/project-running-window.js b/src-main/windows/project-running-window.js index 2d8509a..9167f87 100644 --- a/src-main/windows/project-running-window.js +++ b/src-main/windows/project-running-window.js @@ -90,7 +90,10 @@ class ProjectRunningWindow extends AbtractWindow { permission === 'clipboard-sanitized-write' || // Wake Lock extension - permission === 'screen-wake-lock' + permission === 'screen-wake-lock' || + + // Backpack, restore points want persistent storage + permission === 'persistent-storage' ); }