From 65f28e7ef3fc8c5157ed36337890da5bab729d19 Mon Sep 17 00:00:00 2001 From: Todd Martin Date: Mon, 7 Nov 2022 15:30:08 -0500 Subject: [PATCH] Linting --- .../Services/Implementations/HCaptchaValidationService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Core/Services/Implementations/HCaptchaValidationService.cs b/src/Core/Services/Implementations/HCaptchaValidationService.cs index 54682333a7..dc07494ca1 100644 --- a/src/Core/Services/Implementations/HCaptchaValidationService.cs +++ b/src/Core/Services/Implementations/HCaptchaValidationService.cs @@ -74,7 +74,7 @@ public class HCaptchaValidationService : ICaptchaValidationService _logger.LogError(11389, e, "Unable to verify with HCaptcha."); return response; } - + if (!responseMessage.IsSuccessStatusCode) { _logger.LogError("Error submitting Captcha token to HCaptcha: {status} - {message}", responseMessage.StatusCode, responseMessage.ReasonPhrase); @@ -133,7 +133,7 @@ public class HCaptchaValidationService : ICaptchaValidationService [JsonPropertyName("score_reason")] public List ScoreReason { get; set; } [JsonPropertyName("error-codes")] - public List ErrorCodes {get;set;} + public List ErrorCodes { get; set; } public void Dispose() { } }