Skip to content

Commit

Permalink
[auth] Lint fix (#2248)
Browse files Browse the repository at this point in the history
## Description

## Tests
  • Loading branch information
ua741 authored Jun 22, 2024
2 parents abca5bc + 411e444 commit 32757c3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion auth/lib/core/win_http_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 32757c3

Please sign in to comment.