-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Corrupted settings can crash doq on launch #13
Comments
@juarezr Thanks for the detailed investigation and bug report! And for the patch too! 🔥 This is something I encounter occasionally while developing. But that is when I randomly add/delete color schemes or tinker with the Upon investigation I noted a few things. Firstly, the Example viewer you linked above is an outdated demo from 2022; the updated viewer is here. I had changed the link on the repo front page a long time ago. Second, the new viewer uses slightly different settings and has 4 color schemes. Since both demos are hosted on the same domain (github.io) they share the Can you check the updated demo and/or the browser extension and see if this bug occurs? I am pulling down the old demo to avoid the confusion. |
I couldn't test the updated viewer because the page froze, but:
|
It was a side effect caused by the Dark Mode.
Yep! I didn't spend a lot of time looking for improvement. |
As this is not very high priority, I shall look in to it during the next code cleanup. |
bug: doq stopped working with previously corrupted settings
Suddenly the
doq
stopped working for me in Firefox. However, it still worked on Chromium.After some debugging, I've found that the cause was a previously stored setting
scheme
that not matched thecolorSchemes
anymore.Steps to Reproduce
I've compared the following pages:
doqment
extension installed.Debugger Output
Call Stack
Property Values
I've got these value inspecting variables inside the DevTools.
this.preferences
localStorage.getItem('doq.preferences.dark')
this.colorSchemes
Patch to fix the issue
This makes the code more reliable on bad/corrupted settings:
The text was updated successfully, but these errors were encountered: