From f37a917f274f44b2cc9c924a69314cc454fbbb91 Mon Sep 17 00:00:00 2001 From: Dominion Date: Sun, 30 Oct 2022 21:03:04 -0400 Subject: [PATCH] Fix an off semicolon --- src/Tgstation.Server.Host/Controllers/UserController.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Tgstation.Server.Host/Controllers/UserController.cs b/src/Tgstation.Server.Host/Controllers/UserController.cs index 87882947cb..78ed4839c7 100644 --- a/src/Tgstation.Server.Host/Controllers/UserController.cs +++ b/src/Tgstation.Server.Host/Controllers/UserController.cs @@ -110,8 +110,7 @@ namespace Tgstation.Server.Host.Controllers var totalUsers = await DatabaseContext .Users .AsQueryable() - .CountAsync(cancellationToken) - ; + .CountAsync(cancellationToken); if (totalUsers >= generalConfiguration.UserLimit) return Conflict(new ErrorMessageResponse(ErrorCode.UserLimitReached));