aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt b/app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt
index dd6a0c40..178aa8bb 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt
@@ -83,6 +83,7 @@ class FrostApp : Application() {
Bugsnag.setUserId(Prefs.frostId)
Bugsnag.beforeNotify { error ->
when {
+ error.exception is UndeliverableException -> false
error.exception.stackTrace.any { it.className.contains("XposedBridge") } -> false
else -> true
}