Fix an off semicolon

This commit is contained in:
Dominion
2022-10-30 21:03:04 -04:00
parent 0496d718a9
commit f37a917f27
@@ -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));