-
Notifications
You must be signed in to change notification settings - Fork 57
Open
Description
The following error message is printed to the console whenever I interact with Mozilla Lightbeam since I upgraded to the WebExtension version:
17:47:36.447 Error: UnknownError The operation failed for
reasons unrelated to the database itself and
not coveredby any other error code.storeChild.js:30:12
This is likely coming from the call to the Dexie database library at store.js:179:
Lines 178 to 188 in 2e855ee
| async getAll() { | |
| const websites = await this.db.websites.filter((website) => { | |
| return website.isVisible || website.firstParty; | |
| }).toArray(); | |
| const output = {}; | |
| for (const website of websites) { | |
| output[website.hostname] | |
| = this.outputWebsite(website.hostname, website); | |
| } | |
| return output; | |
| }, |
Reactions are currently unavailable