We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b718abf commit 36f854cCopy full SHA for 36f854c
src/lib/browser/BrowserAccountStorage.js
@@ -24,7 +24,7 @@ export default class BrowserAccountStorage {
24
let entry = await BrowserAccountStorage.getEntry(entryName, defaultVal)
25
entry = fn(entry)
26
27
- await browser.storage.local.set({ [entryName]: entry })
+ await browser.storage.local.set({ [entryName]: JSON.stringify(entry) })
28
})
29
}
30
0 commit comments