Grant persistent-storage permission to project-running-window
Some checks failed
Build (Auto) / build (push) Has been cancelled

This seems to already be effectively the default in Electron, but let's explicitly grant the request.
This commit is contained in:
Thomas Weber 2024-11-17 00:19:16 -06:00
parent 2bdd25d5ae
commit 823cd2fc43

View File

@ -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'
);
}