Sentry: filter out localForage "No storage found" error

This commit is contained in:
Alex Gleason 2023-02-14 10:30:14 -06:00
parent 261d900b51
commit 55f99980e6
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,9 @@ export const start = (): void => {
'Failed to update a ServiceWorker for scope', 'Failed to update a ServiceWorker for scope',
// Useful for try/catch, useless as a Sentry error. // Useful for try/catch, useless as a Sentry error.
'AbortError', 'AbortError',
// localForage error in FireFox private browsing mode (which doesn't support IndexedDB).
// We only use IndexedDB as a cache, so we can safely ignore the error.
'No available storage method found',
], ],
denyUrls: [ denyUrls: [
// Browser extensions. // Browser extensions.