From 6883356e2833d26ead46087ffdb887827ae92734 Mon Sep 17 00:00:00 2001 From: Qstick Date: Tue, 18 Jan 2022 23:28:12 -0600 Subject: [PATCH] New: Add AppName to system status response --- src/Lidarr.Api.V1/System/SystemController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Lidarr.Api.V1/System/SystemController.cs b/src/Lidarr.Api.V1/System/SystemController.cs index e53b8cda3..d3b47849c 100644 --- a/src/Lidarr.Api.V1/System/SystemController.cs +++ b/src/Lidarr.Api.V1/System/SystemController.cs @@ -58,6 +58,7 @@ namespace Lidarr.Api.V1.System { return new { + AppName = BuildInfo.AppName, Version = BuildInfo.Version.ToString(), BuildTime = BuildInfo.BuildDateTime, IsDebug = BuildInfo.IsDebug,