aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Plugins
diff options
context:
space:
mode:
authorGreenback <jimcartlidge@yahoo.co.uk>2020-12-17 13:44:38 +0000
committerGreenback <jimcartlidge@yahoo.co.uk>2020-12-17 13:44:53 +0000
commita4a40407a047de2f10aa0f9d0ba9fe0f600ffdb0 (patch)
tree73ad5334f1fe93b8a82aa59586719b6c502ae026 /MediaBrowser.Model/Plugins
parent212c76102daa679e6bba387a5501ae0092e13fb5 (diff)
Change PluginStatus states.
Diffstat (limited to 'MediaBrowser.Model/Plugins')
-rw-r--r--MediaBrowser.Model/Plugins/PluginStatus.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/MediaBrowser.Model/Plugins/PluginStatus.cs b/MediaBrowser.Model/Plugins/PluginStatus.cs
index 2acc56811..3ea05174f 100644
--- a/MediaBrowser.Model/Plugins/PluginStatus.cs
+++ b/MediaBrowser.Model/Plugins/PluginStatus.cs
@@ -8,10 +8,10 @@ namespace MediaBrowser.Model.Plugins
/// <summary>
/// This plugin requires a restart in order for it to load. This is a memory only status.
/// The actual status of the plugin after reload is present in the manifest.
- /// eg. A disabled plugin will still be active until the next restart, and so will have a memory status of RestartRequired,
+ /// eg. A disabled plugin will still be active until the next restart, and so will have a memory status of Restart,
/// but a disk manifest status of Disabled.
/// </summary>
- RestartRequired = 1,
+ Restart = 1,
/// <summary>
/// This plugin is currently running.
@@ -31,7 +31,7 @@ namespace MediaBrowser.Model.Plugins
/// <summary>
/// This plugin caused an error when instantiated. (Either DI loop, or exception)
/// </summary>
- Malfunction = -3,
+ Malfunctioned = -3,
/// <summary>
/// This plugin has been superceded by another version.
@@ -42,6 +42,6 @@ namespace MediaBrowser.Model.Plugins
/// An attempt to remove this plugin from disk will happen at every restart.
/// It will not be loaded, if unable to do so.
/// </summary>
- DeleteOnStartup = -5
+ Deleted = -5
}
}