From 2059d81529fa4859c2037531b74a14b9051c7b81 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Thu, 26 Sep 2019 15:22:40 +0200 Subject: [PATCH] Crashlytics: Ignore another network error --- lib/apis/git.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/apis/git.dart b/lib/apis/git.dart index 81d736a3..890df847 100644 --- a/lib/apis/git.dart +++ b/lib/apis/git.dart @@ -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; }