From 636dd139c2e959d0e3a06df7f3702d264377708a Mon Sep 17 00:00:00 2001 From: Archi Date: Mon, 11 Dec 2023 11:42:19 +0100 Subject: [PATCH] Misc --- ArchiSteamFarm/IPC/Controllers/Api/ArchiController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/IPC/Controllers/Api/ArchiController.cs b/ArchiSteamFarm/IPC/Controllers/Api/ArchiController.cs index 45149aaf2e29a..f95a936170b9a 100644 --- a/ArchiSteamFarm/IPC/Controllers/Api/ArchiController.cs +++ b/ArchiSteamFarm/IPC/Controllers/Api/ArchiController.cs @@ -35,4 +35,4 @@ namespace ArchiSteamFarm.IPC.Controllers.Api; [SwaggerResponse((int) HttpStatusCode.Forbidden, $"ASF lacks {nameof(GlobalConfig.IPCPassword)} and you're not permitted to access the API, or {nameof(GlobalConfig.IPCPassword)} is set and you've failed to authenticate too many times (try again in an hour). See {SharedInfo.ProjectURL}/wiki/IPC#authentication.", typeof(GenericResponse))] [SwaggerResponse((int) HttpStatusCode.InternalServerError, "ASF has encountered an unexpected error while serving the request. The log may include extra info related to this issue.")] [SwaggerResponse((int) HttpStatusCode.ServiceUnavailable, "ASF has encountered an error while requesting a third-party resource. Try again later.")] -public abstract class ArchiController : ControllerBase { } +public abstract class ArchiController : ControllerBase;