web: ignore network errors for sentry
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
d82c01aa61
commit
580e88c6fc
|
@ -23,6 +23,11 @@ export function configureSentry(canDoPpi: boolean = false): Promise<Config> {
|
||||||
if (hint.originalException instanceof SentryIgnoredError) {
|
if (hint.originalException instanceof SentryIgnoredError) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
if (hint.originalException instanceof Error) {
|
||||||
|
if (hint.originalException.name == 'NetworkError') {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
if (hint.originalException instanceof Response) {
|
if (hint.originalException instanceof Response) {
|
||||||
const response = hint.originalException as Response;
|
const response = hint.originalException as Response;
|
||||||
// We only care about server errors
|
// We only care about server errors
|
||||||
|
|
Reference in New Issue