We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
OS:- MacOs ventura(13.2.1) Browser: Firefox(113.0.1)
When the site URL is HTTP, the isPrivate value is incorrectly displayed as true instead of false in normal mode.
Solution:
const firefoxPrivateTest = () => { const db = indexedDB.open('test'); db.onerror = function () { __callback(true); }; db.onsuccess = function () { __callback(false); }; };
The text was updated successfully, but these errors were encountered:
This solution no more works since version 115... OK in version 114.
We still need to find a better way for the newer versions.
Sorry, something went wrong.
No branches or pull requests
OS:- MacOs ventura(13.2.1)
Browser: Firefox(113.0.1)
When the site URL is HTTP, the isPrivate value is incorrectly displayed as true instead of false in normal mode.
Solution:
The text was updated successfully, but these errors were encountered: