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
This commit is contained in:
parent
943cd85e22
commit
004c3bcd0d
1 changed files with 1 additions and 9 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue