From 50018d0325b980bda1cebed54a4c17d3076ebcee Mon Sep 17 00:00:00 2001 From: Qstick Date: Thu, 12 May 2022 19:07:40 -0500 Subject: [PATCH] New: Instance name in System/Status API endpoint --- 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 747f1c245..c759f7b9e 100644 --- a/src/Radarr.Api.V3/System/SystemController.cs +++ b/src/Radarr.Api.V3/System/SystemController.cs @@ -59,6 +59,7 @@ public object GetStatus() return new { AppName = BuildInfo.AppName, + InstanceName = _configFileProvider.InstanceName, Version = BuildInfo.Version.ToString(), BuildTime = BuildInfo.BuildDateTime, IsDebug = BuildInfo.IsDebug,