From 004c3bcd0d5cffd14e886161cebc8c326f5136a5 Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Thu, 24 Sep 2026 20:37:21 -0400 Subject: [PATCH] remove outdated error ignores I believe some of these are fixed, if not they should be noisy so I notice them and can re-add --- lib/main.dart | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index 7522e79..bbc8a4e 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -42,15 +42,7 @@ New Value: ${newValue is AsyncData ? newValue.value : newValue} } void showError(Object error, [StackTrace? stackTrace]) { - if (error.toString().contains("DioException") || - error.toString().contains( - "setState() or markNeedsBuild() called during build.", - ) || - error.toString().contains("Invalid source") || - error.toString().contains("UTF-16") || - error.toString().contains("HTTP request failed") || - error.toString().contains("'_nextFrame != null': is not true.") || - error.toString().contains("Invalid image data")) { + if (error.toString().contains("'_nextFrame != null': is not true.")) { return; }