diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2020-12-23 10:31:11 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-23 10:31:11 +0000 |
| commit | e8df9551ef392785c0fb7269b9e187cd199390d8 (patch) | |
| tree | 60041de382df796a1b54dbcb8d7becb71801b7c1 | |
| parent | 9a97933499d4171e6ff7d2d860845c1cc54ef7d8 (diff) | |
Update PluginManager.cs
Changed a to i
| -rw-r--r-- | Emby.Server.Implementations/Plugins/PluginManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Plugins/PluginManager.cs b/Emby.Server.Implementations/Plugins/PluginManager.cs index dac3100af..629975abb 100644 --- a/Emby.Server.Implementations/Plugins/PluginManager.cs +++ b/Emby.Server.Implementations/Plugins/PluginManager.cs @@ -81,9 +81,9 @@ namespace Emby.Server.Implementations.Plugins public IEnumerable<Assembly> LoadAssemblies() { // Attempt to remove any deleted plugins and change any successors to be active. - for (int a = _plugins.Count - 1; a >= 0; a--) + for (int i = _plugins.Count - 1; i >= 0; i--) { - var plugin = _plugins[a]; + var plugin = _plugins[i]; if (plugin.Manifest.Status == PluginStatus.Deleted && DeletePlugin(plugin)) { UpdateSuccessors(plugin); |
