aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Updates
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2020-04-11 19:54:33 +0900
committerdkanada <dkanada@users.noreply.github.com>2020-04-11 19:54:33 +0900
commitabb7ed9c35cc7727e81357c3b55555ee4c714d10 (patch)
tree3c8d580c81098b7d4beb3812b7b81962dadf7189 /Emby.Server.Implementations/Updates
parent78abbcc25117a20511f70f65c89f2f1063d0e547 (diff)
rename target abi property
Diffstat (limited to 'Emby.Server.Implementations/Updates')
-rw-r--r--Emby.Server.Implementations/Updates/InstallationManager.cs2
1 files changed, 1 insertions, 1 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)
{