1
0
mirror of https://github.com/GitJournal/GitJournal.git synced 2025-07-08 09:00:54 +08:00

Ignore another network message

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

@ -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;
}