You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(name==='TypeError'&&message==='Load failed')||// Almost come from mobile safari fetch API issues
62
+
(name==='ChunkLoadError'&&message.includes('Failed to fetch'))||// https://sentry.io/answers/chunk-load-errors-javascript/
63
+
(name==='Error'&&message.includes('Java object is gone'))||// coming from the WebView to Java bridge in Chrome, something went wrong with Chrome Mobile WebView from some Android devices
64
+
(name==='UnhandledRejection'&&message.includes('Non-Error promise rejection captured with value'))||
65
+
(name==='<unknown>'&&message.includes('Non-Error promise rejection captured with value'))||// this always happens when a some external library throws an error, checked with all issues in Sentry logs
66
+
(name==='<unknown>'&&message.includes('Object captured as promise rejection with keys'))// this always happens when a some external library throws an error, checked with all issues in Sentry logs
67
+
)
68
+
returnnull
69
+
70
+
if(name==='TypeError'&&message.includes('Failed to fetch')){
0 commit comments