From ba2d1b3e6841723e253d5242eca13ed8c57518fc 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/Prowlarr.Api.V1/System/SystemController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Prowlarr.Api.V1/System/SystemController.cs b/src/Prowlarr.Api.V1/System/SystemController.cs index 387ffd5c6..1f0860457 100644 --- a/src/Prowlarr.Api.V1/System/SystemController.cs +++ b/src/Prowlarr.Api.V1/System/SystemController.cs @@ -59,6 +59,7 @@ namespace Prowlarr.Api.V1.System return new { AppName = BuildInfo.AppName, + InstanceName = _configFileProvider.InstanceName, Version = BuildInfo.Version.ToString(), BuildTime = BuildInfo.BuildDateTime, IsDebug = BuildInfo.IsDebug,