From 8fd61011211ebc0acaecf56bf229207f092dad65 Mon Sep 17 00:00:00 2001 From: Qstick Date: Tue, 18 Jan 2022 23:23:10 -0600 Subject: [PATCH] New: Add AppName to system status response Fixes #6952 --- src/Radarr.Api.V3/System/SystemController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Radarr.Api.V3/System/SystemController.cs b/src/Radarr.Api.V3/System/SystemController.cs index add13528a..4fdef2677 100644 --- a/src/Radarr.Api.V3/System/SystemController.cs +++ b/src/Radarr.Api.V3/System/SystemController.cs @@ -58,6 +58,7 @@ namespace Radarr.Api.V3.System { return new { + AppName = BuildInfo.AppName, Version = BuildInfo.Version.ToString(), BuildTime = BuildInfo.BuildDateTime, IsDebug = BuildInfo.IsDebug,