Remove all sentry references

- Google play store already offers crash reporting...
This commit is contained in:
Oliver Walters 2021-02-16 08:03:01 +11:00
parent 161535c11c
commit 59585f72cf
10 changed files with 8 additions and 278 deletions

View file

@ -156,7 +156,7 @@ class InvenTreeModel {
else if (e is TimeoutException) {
showTimeoutError(context);
} else {
// Re-throw the error (Sentry will catch)
// Re-throw the error
throw e;
}
@ -202,7 +202,7 @@ class InvenTreeModel {
} else if (e is TimeoutException) {
showTimeoutError(context);
} else {
// Re-throw the error, let Sentry report it
// Re-throw the error
throw e;
}
@ -253,7 +253,7 @@ class InvenTreeModel {
else if (e is TimeoutException) {
showTimeoutError(context);
} else {
// Re-throw the error (handled by Sentry)
// Re-throw the error
throw e;
}
return null;
@ -301,7 +301,7 @@ class InvenTreeModel {
else if (e is TimeoutException) {
showTimeoutError(context);
} else {
// Re-throw the error (Sentry will catch)
// Re-throw the error
throw e;
}