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:
|
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; |
|
}, |
The following error message is printed to the console whenever I interact with Mozilla Lightbeam since I upgraded to the WebExtension version:
This is likely coming from the call to the Dexie database library at store.js:179:
lightbeam-we/src/js/store.js
Lines 178 to 188 in 2e855ee