diff options
| -rw-r--r-- | Emby.Server.Implementations/Updates/InstallationManager.cs | 2 | ||||
| -rw-r--r-- | MediaBrowser.Model/Updates/VersionInfo.cs | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs index ffb6b5cbc..6a34ca74b 100644 --- a/Emby.Server.Implementations/Updates/InstallationManager.cs +++ b/Emby.Server.Implementations/Updates/InstallationManager.cs @@ -154,7 +154,7 @@ namespace Emby.Server.Implementations.Updates { var appVer = _applicationHost.ApplicationVersion; availableVersions = availableVersions - .Where(x => Version.Parse(x.minimumServerVersion) <= appVer); + .Where(x => Version.Parse(x.targetAbi) <= appVer); if (minVersion != null) { diff --git a/MediaBrowser.Model/Updates/VersionInfo.cs b/MediaBrowser.Model/Updates/VersionInfo.cs index 6756e7454..ac47e97da 100644 --- a/MediaBrowser.Model/Updates/VersionInfo.cs +++ b/MediaBrowser.Model/Updates/VersionInfo.cs @@ -35,10 +35,10 @@ namespace MediaBrowser.Model.Updates public string description { get; set; } /// <summary> - /// Gets or sets the minimum required version for the server. + /// Gets or sets the ABI that this version was built against. /// </summary> - /// <value>The minimum required version.</value> - public string minimumServerVersion { get; set; } + /// <value>The target ABI version.</value> + public string targetAbi { get; set; } /// <summary> /// Gets or sets the source URL. |
