mirror of
https://github.com/TurboWarp/desktop.git
synced 2024-11-25 16:36:20 +08:00
Grant persistent-storage permission to project-running-window
Some checks failed
Build (Auto) / build (push) Has been cancelled
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:
parent
2bdd25d5ae
commit
823cd2fc43
@ -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'
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user