From 3960dda3bd28120de94ed5e1a92c62ca08cf20e0 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 22 Apr 2013 15:59:40 -0400 Subject: [PATCH] remove auto-setting of update level --- .../Updates/InstallationManager.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs b/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs index 7e5b294d60..9c3b532eca 100644 --- a/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs +++ b/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs @@ -417,13 +417,6 @@ namespace MediaBrowser.Server.Implementations.Updates if (plugin != null) { - // Synchronize the UpdateClass value - if (plugin.Configuration.UpdateClass != package.classification) - { - plugin.Configuration.UpdateClass = package.classification; - plugin.SaveConfiguration(); - } - OnPluginUpdated(plugin, package); } else