aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2022-11-11 08:32:29 -0700
committerCody Robibero <cody@robibe.ro>2022-11-11 08:32:29 -0700
commitd7f0596d5dcc6c6eddee05dbddd1d5e493c3580d (patch)
tree6e765e73dde8755303232a3e4ca7f8b42c119416
parentc6e4b0b1bf2e88adaeba5f99bebf2e89581397fe (diff)
Don't auto-update if plugin is pending restart
-rw-r--r--Emby.Server.Implementations/Plugins/PluginManager.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Plugins/PluginManager.cs b/Emby.Server.Implementations/Plugins/PluginManager.cs
index ec4e0dbeb..3f7d46822 100644
--- a/Emby.Server.Implementations/Plugins/PluginManager.cs
+++ b/Emby.Server.Implementations/Plugins/PluginManager.cs
@@ -715,6 +715,7 @@ namespace Emby.Server.Implementations.Plugins
{
// This value is memory only - so that the web will show restart required.
plugin.Manifest.Status = PluginStatus.Restart;
+ plugin.Manifest.AutoUpdate = false;
return;
}
@@ -729,6 +730,7 @@ namespace Emby.Server.Implementations.Plugins
// This value is memory only - so that the web will show restart required.
plugin.Manifest.Status = PluginStatus.Restart;
+ plugin.Manifest.AutoUpdate = false;
}
}
}