From 94810475404627dadeb32b3f7badeae37cd2031e Mon Sep 17 00:00:00 2001 From: Blake Niemyjski Date: Fri, 14 Jul 2023 06:52:22 -0500 Subject: [PATCH] Applied formatting changes --- src/Exceptionless.Web/Controllers/UserController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Exceptionless.Web/Controllers/UserController.cs b/src/Exceptionless.Web/Controllers/UserController.cs index a31ca348ae..0cfab7081e 100644 --- a/src/Exceptionless.Web/Controllers/UserController.cs +++ b/src/Exceptionless.Web/Controllers/UserController.cs @@ -261,7 +261,7 @@ public async Task ResendVerificationEmailAsync(string id) public async Task UnverifyEmailAddressAsync() { using var reader = new StreamReader(HttpContext.Request.Body); - string[] emailAddresses = (await reader.ReadToEndAsync()).SplitAndTrim(new []{ ',' }); + string[] emailAddresses = (await reader.ReadToEndAsync()).SplitAndTrim(new[] { ',' }); foreach (string emailAddress in emailAddresses) {