aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Plugins
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-12-18 21:56:35 +0000
committerGitHub <noreply@github.com>2020-12-18 21:56:35 +0000
commit5c3ebb63e62948ce9d405f7cbb82d4579e568833 (patch)
treebe9a51fc181e3a4e9a16a7c218c4d5cdef5da7dd /Emby.Server.Implementations/Plugins
parent09f219bbcee78569537bb417de27f842879f2233 (diff)
Update Emby.Server.Implementations/Plugins/PluginManager.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
Diffstat (limited to 'Emby.Server.Implementations/Plugins')
-rw-r--r--Emby.Server.Implementations/Plugins/PluginManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Plugins/PluginManager.cs b/Emby.Server.Implementations/Plugins/PluginManager.cs
index dc2eca4a1..be08d8515 100644
--- a/Emby.Server.Implementations/Plugins/PluginManager.cs
+++ b/Emby.Server.Implementations/Plugins/PluginManager.cs
@@ -113,7 +113,7 @@ namespace Emby.Server.Implementations.Plugins
/// </summary>
public void CreatePlugins()
{
- var createdPlugins = _appHost.GetExports<IPlugin>(CreatePluginInstance)
+ _ = _appHost.GetExports<IPlugin>(CreatePluginInstance)
.Where(i => i != null)
.ToArray();
}