diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2021-04-08 14:38:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-08 14:38:25 +0100 |
| commit | b645bb20deb92225e17dd87fcc7fbf2fc1631e80 (patch) | |
| tree | 78a3fd273cdc80188fb2f98edf66729ad36454ae /Emby.Server.Implementations/Updates | |
| parent | 65f880be323e154655505c702822ce381fc5569e (diff) | |
Update Emby.Server.Implementations/Updates/InstallationManager.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
Diffstat (limited to 'Emby.Server.Implementations/Updates')
| -rw-r--r-- | Emby.Server.Implementations/Updates/InstallationManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs index e7307aefe..653b1381b 100644 --- a/Emby.Server.Implementations/Updates/InstallationManager.cs +++ b/Emby.Server.Implementations/Updates/InstallationManager.cs @@ -502,7 +502,7 @@ namespace Emby.Server.Implementations.Updates foreach (var plugin in plugins) { // Don't auto update when plugin marked not to, or when it's disabled. - if (plugin.Manifest?.AutoUpdate == false || plugin.Manifest?.Status == MediaBrowser.Model.Plugins.PluginStatus.Disabled) + if (plugin.Manifest?.AutoUpdate == false || plugin.Manifest?.Status == PluginStatus.Disabled) { continue; } |
