Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
erosman authored Sep 17, 2023
1 parent 81efcc2 commit 285e841
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/content/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,11 +282,11 @@ class BrowsingData {

if (!confirm(browser.i18n.getMessage('deleteBrowsingDataConfirm'))) { return; }

browser.browsingData.remove({}, {
cookies: true,
indexedDB: true,
localStorage: true
})
browser.browsingData.remove({}, {
cookies: true,
indexedDB: true,
localStorage: true
})
.catch(error => App.notify(browser.i18n.getMessage('deleteBrowsingData') + '\n\n' + error.message));
}
}
Expand Down

0 comments on commit 285e841

Please sign in to comment.