From 041689e9045353ab037f0e5fe3114005543670cb Mon Sep 17 00:00:00 2001 From: Qstick Date: Tue, 18 Jan 2022 23:19:03 -0600 Subject: [PATCH] New: Add AppName to system status response --- src/Sonarr.Api.V3/System/SystemModule.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Sonarr.Api.V3/System/SystemModule.cs b/src/Sonarr.Api.V3/System/SystemModule.cs index 408015ef5..f62084f6b 100644 --- a/src/Sonarr.Api.V3/System/SystemModule.cs +++ b/src/Sonarr.Api.V3/System/SystemModule.cs @@ -50,6 +50,7 @@ namespace Sonarr.Api.V3.System { return new { + AppName = BuildInfo.AppName, Version = BuildInfo.Version.ToString(), BuildTime = BuildInfo.BuildDateTime, IsDebug = BuildInfo.IsDebug,