Sentry: filter out localForage "No storage found" error
This commit is contained in:
parent
261d900b51
commit
55f99980e6
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue