@ -132,7 +132,7 @@ namespace Emby.Server.Implementations.Updates
targetAbi = minimumVersion;
}
// Only show plugins that fall between targetAbi and maxAbi
// Only show plugins that fall between targetAbi.
if (_applicationHost.ApplicationVersion >= targetAbi)
{
continue;
@ -51,11 +51,6 @@ namespace MediaBrowser.Common.Plugins
/// </summary>
public string TargetAbi { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the upper compatibility version for the plugin.
public string MaxAbi { get; set; } = string.Empty;
/// Gets or sets the timestamp of the plugin.
@ -24,7 +24,7 @@ namespace MediaBrowser.Model.Plugins
Disabled = -1,
/// This plugin does not meet the TargetAbi / MaxAbi requirements.
/// This plugin does not meet the TargetAbi requirements.
NotSupported = -2,