From 411e444295a5d231eb5fd4487e94f97100399e62 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Sat, 22 Jun 2024 16:54:58 +0530 Subject: [PATCH] [auth] Lint fix --- auth/lib/core/win_http_client.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/auth/lib/core/win_http_client.dart b/auth/lib/core/win_http_client.dart index 61072d47a0..46f1e70e5a 100644 --- a/auth/lib/core/win_http_client.dart +++ b/auth/lib/core/win_http_client.dart @@ -55,7 +55,8 @@ Dfvp7OOGAN6dEOM4+qR9sdjoSYKEBpsr6GtPAQw4dy753ec5 return HttpClient(context: context); } on TlsException catch (e) { debugPrint( - "Error adding certificate to trusted certificates: ${e.osError?.message}"); + "Error adding certificate to trusted certificates: ${e.osError?.message}", + ); // certificate is already trusted. Nothing to do here if (e.osError?.message.contains("CERT_ALREADY_IN_HASH_TABLE") != true) { rethrow;