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