aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Plugins
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-12-18 21:56:15 +0000
committerGitHub <noreply@github.com>2020-12-18 21:56:15 +0000
commit09f219bbcee78569537bb417de27f842879f2233 (patch)
tree503fc8974c8b61a383b57f18161f9f3cf6a0f8cc /Emby.Server.Implementations/Plugins
parent3708ca8dbb0eff2eaa6c39b22cc1a2fd6e197dff (diff)
Update Emby.Server.Implementations/Plugins/PluginManager.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
Diffstat (limited to 'Emby.Server.Implementations/Plugins')
-rw-r--r--Emby.Server.Implementations/Plugins/PluginManager.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Plugins/PluginManager.cs b/Emby.Server.Implementations/Plugins/PluginManager.cs
index 6ed9623f9..dc2eca4a1 100644
--- a/Emby.Server.Implementations/Plugins/PluginManager.cs
+++ b/Emby.Server.Implementations/Plugins/PluginManager.cs
@@ -52,7 +52,6 @@ namespace Emby.Server.Implementations.Plugins
_jsonOptions = JsonDefaults.GetOptions();
_config = config;
_appHost = appHost;
- _nextVersion = new Version(_appVersion.Major, _appVersion.Minor + 2, _appVersion.Build, _appVersion.Revision);
_minimumVersion = new Version(0, 0, 0, 1);
_plugins = Directory.Exists(_pluginsPath) ? DiscoverPlugins().ToList() : new List<LocalPlugin>();
}