I’m encountering an issue with localStorage
when working with incognito:
Uncaught DOMException: Failed to read the 'localStorage' property from 'Window': Access is denied for this document.
at Function.e.initBackground
It looks like initBackground
in packages/core/src/browser/color-application-contribution.ts
is failing on access to localStorage
. Since initBackground
is static and invoked from frontend-application-module.ts
: https://github.com/eclipse-theia/theia/blob/6798167b50e5df4682ec218294a4eb1f3817904f/packages/core/src/browser/frontend-application-module.ts#L103, I’m not sure how I can fix this.
Any suggestions?