aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-09-13 18:06:13 +0100
committerGitHub <noreply@github.com>2020-09-13 18:06:13 +0100
commit7b4b101ecacb6026cf2ca4142f0ca0fbb0f637fd (patch)
tree75cdabfbcc3d06f5b7ac50ef18d55531371e9af4
parent107d606a7069e43bafacd0e8254631230219111f (diff)
Update ApplicationHost.cs
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index 9540a879a..2206fabad 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -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));