diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs
index 267a338750..630ede667c 100644
--- a/Emby.Server.Implementations/Updates/InstallationManager.cs
+++ b/Emby.Server.Implementations/Updates/InstallationManager.cs
@@ -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;
diff --git a/MediaBrowser.Common/Plugins/PluginManifest.cs b/MediaBrowser.Common/Plugins/PluginManifest.cs
index 755ccafda1..9c45e5d950 100644
--- a/MediaBrowser.Common/Plugins/PluginManifest.cs
+++ b/MediaBrowser.Common/Plugins/PluginManifest.cs
@@ -51,11 +51,6 @@ namespace MediaBrowser.Common.Plugins
///
public string TargetAbi { get; set; } = string.Empty;
- ///
- /// 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.
///
diff --git a/MediaBrowser.Model/Plugins/PluginStatus.cs b/MediaBrowser.Model/Plugins/PluginStatus.cs
index 3ea05174fd..4b9b9bbeee 100644
--- a/MediaBrowser.Model/Plugins/PluginStatus.cs
+++ b/MediaBrowser.Model/Plugins/PluginStatus.cs
@@ -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,