Prechádzať zdrojové kódy

Update Emby.Server.Implementations/Plugins/PluginManager.cs

Co-authored-by: Cody Robibero <cody@robibe.ro>
BaronGreenback 4 rokov pred
rodič
commit
5c3ebb63e6

+ 1 - 1
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();
         }