We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9687f75 commit 9481047Copy full SHA for 9481047
src/Exceptionless.Web/Controllers/UserController.cs
@@ -261,7 +261,7 @@ public async Task<IActionResult> ResendVerificationEmailAsync(string id)
261
public async Task<IActionResult> UnverifyEmailAddressAsync()
262
{
263
using var reader = new StreamReader(HttpContext.Request.Body);
264
- string[] emailAddresses = (await reader.ReadToEndAsync()).SplitAndTrim(new []{ ',' });
+ string[] emailAddresses = (await reader.ReadToEndAsync()).SplitAndTrim(new[] { ',' });
265
266
foreach (string emailAddress in emailAddresses)
267
0 commit comments