Update ApplicationHost.cs

This commit is contained in:
BaronGreenback 2020-09-13 18:06:13 +01:00 committed by GitHub
parent 107d606a70
commit 7b4b101eca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1021,7 +1021,7 @@ namespace Emby.Server.Implementations
protected abstract void RestartInternal();
/// <summary>
/// Comparison function used in <see cref="GetLatestDLLVersion" />.
/// Comparison function used in <see cref="GetPlugins" />.
/// </summary>
/// <param name="a">Item to compare.</param>
/// <param name="b">Item to compare with.</param>
@ -1068,7 +1068,7 @@ namespace Emby.Server.Implementations
version = new Version(0, 0, 0, 1);
}
if (targetAbi <= ApplicationVersion)
if (targetAbi >= ApplicationVersion)
{
// Only load Plugins for this version or below.
versions.Add((version, manifest.Name, dir));