Merge branch 'sentry-localforage' into 'develop'

Sentry: filter out localForage "No storage found" error

See merge request soapbox-pub/soapbox!2282
This commit is contained in:
Alex Gleason 2023-02-14 20:21:03 +00:00
commit 2a50a6c26f
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',
// Useful for try/catch, useless as a Sentry error.
'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: [
// Browser extensions.