You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.
info: Uncaught-Exception: 'uncaught exception: [Exception... "The operation failed for reasons unrelated to the database itself and not covered by any other error code." code: "1" nsresult: "0x80660001 (NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR)" location: "chromeless://main/browser_code/script.js Line: 5"]' in file '' at line 0, col 0 (147)
Code:
var indexedDB = window.indexedDB || window.webkitIndexedDB || window.mozIndexedDB;
[Break On This Error] var request = IndexedDB.open("faves");
IndexedDB doesn't work locally on firefox, from my understanding it's because of file:// permissions. Is there anything I need to do to make IndexedDB work on chromeless?
The text was updated successfully, but these errors were encountered:
The problem is that any page served from file:// would be access the data saved by any other page served from file:// so there needs to be some mechanism to deal with this.
The problem is that any page served from file:// would be access the data
saved by any other page served from file:// so there needs to be some
mechanism to deal with this.
Reply to this email directly or view it on GitHub: #149 (comment)
info: Uncaught-Exception: 'uncaught exception: [Exception... "The operation failed for reasons unrelated to the database itself and not covered by any other error code." code: "1" nsresult: "0x80660001 (NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR)" location: "chromeless://main/browser_code/script.js Line: 5"]' in file '' at line 0, col 0 (147)
Code:
var indexedDB = window.indexedDB || window.webkitIndexedDB || window.mozIndexedDB;
[Break On This Error] var request = IndexedDB.open("faves");
IndexedDB doesn't work locally on firefox, from my understanding it's because of file:// permissions. Is there anything I need to do to make IndexedDB work on chromeless?
The text was updated successfully, but these errors were encountered: