Crashlytics: Ignore another network error

This commit is contained in:
Vishesh Handa
2019-09-26 15:22:40 +02:00
parent 076afb3303
commit 2059d81529

View File

@ -13,6 +13,9 @@ bool shouldIgnorePlatformException(PlatformException ex) {
if (ex.message.contains("failed to resolve address for")) {
return true;
}
if (ex.message.contains("No address associated with hostname")) {
return true;
}
return false;
}