mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04:00
rename target abi property
This commit is contained in:
parent
78abbcc251
commit
abb7ed9c35
2 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue