From 69b8d94ccdfaf4aa6d8095b5708478d74c760709 Mon Sep 17 00:00:00 2001 From: Dominion Date: Tue, 23 May 2023 19:41:06 -0400 Subject: [PATCH] Fix a semi-colon --- src/Tgstation.Server.Host/Controllers/ChatController.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Tgstation.Server.Host/Controllers/ChatController.cs b/src/Tgstation.Server.Host/Controllers/ChatController.cs index d6a33f6fe8..22605192ad 100644 --- a/src/Tgstation.Server.Host/Controllers/ChatController.cs +++ b/src/Tgstation.Server.Host/Controllers/ChatController.cs @@ -115,8 +115,7 @@ namespace Tgstation.Server.Host.Controllers .ChatBots .AsQueryable() .Where(x => x.InstanceId == Instance.Id) - .CountAsync(cancellationToken) - ; + .CountAsync(cancellationToken); if (countOfExistingBotsInInstance >= Instance.ChatBotLimit.Value) return Conflict(new ErrorMessageResponse(ErrorCode.ChatBotMax));