Ignore another network message

This commit is contained in:
Vishesh Handa
2019-10-08 16:00:56 +02:00
parent d1a2fed734
commit 992e2042a7

View File

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