From fb8143bb49b4f9fd1215d14ff6dd7999dbaf24fe Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 21 Sep 2019 15:42:32 -0400 Subject: [PATCH] Fixed: MigrationVersion not passed to UI --- src/Radarr.Api.V2/System/SystemModule.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Radarr.Api.V2/System/SystemModule.cs b/src/Radarr.Api.V2/System/SystemModule.cs index 419fc47595..bf1c140fda 100644 --- a/src/Radarr.Api.V2/System/SystemModule.cs +++ b/src/Radarr.Api.V2/System/SystemModule.cs @@ -69,6 +69,7 @@ private object GetStatus() Branch = _configFileProvider.Branch, Authentication = _configFileProvider.AuthenticationMethod, SqliteVersion = _database.Version, + MigrationVersion = _database.Migration, UrlBase = _configFileProvider.UrlBase, RuntimeVersion = _platformInfo.Version, RuntimeName = PlatformInfo.Platform,