Skip to content

Commit

Permalink
Applied formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Jul 14, 2023
1 parent 9687f75 commit 9481047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exceptionless.Web/Controllers/UserController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ public async Task<IActionResult> ResendVerificationEmailAsync(string id)
public async Task<IActionResult> 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)
{
Expand Down

0 comments on commit 9481047

Please sign in to comment.