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 bececd4 commit b29c916Copy full SHA for b29c916
extension/js/common/settings.ts
@@ -94,8 +94,10 @@ export class Settings {
94
if (!filter) {
95
throw new Error('Filter is empty for account_email"' + acctEmail + '"');
96
}
97
+
98
await new Promise<void>((resolve, reject) => {
- chrome.storage.local.get([], async storage => {
99
+ // eslint-disable-next-line no-null/no-null
100
+ chrome.storage.local.get(null, async storage => {
101
try {
102
for (const storageIndex of Object.keys(storage)) {
103
if (storageIndex.startsWith(filter)) {
0 commit comments