From 55f99980e69fe568c4907e4c6c37fb43017fed07 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Tue, 14 Feb 2023 10:30:14 -0600 Subject: [PATCH] Sentry: filter out localForage "No storage found" error --- app/soapbox/monitoring.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/soapbox/monitoring.ts b/app/soapbox/monitoring.ts index da9bf46e7..2e090f924 100644 --- a/app/soapbox/monitoring.ts +++ b/app/soapbox/monitoring.ts @@ -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.