aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Plugins/PluginManager.cs
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-12-18 08:26:11 +0000
committerGitHub <noreply@github.com>2020-12-18 08:26:11 +0000
commit4153551dfcd498114d240b0311b20df8799c1593 (patch)
treed9544be238de9afa8fa0616695e426c388c7d347 /Emby.Server.Implementations/Plugins/PluginManager.cs
parent0dcf6b09c1ad7913a27bf56b19716a0da957054e (diff)
Update Emby.Server.Implementations/Plugins/PluginManager.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
Diffstat (limited to 'Emby.Server.Implementations/Plugins/PluginManager.cs')
-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 874e88c57..2e4b23bcf 100644
--- a/Emby.Server.Implementations/Plugins/PluginManager.cs
+++ b/Emby.Server.Implementations/Plugins/PluginManager.cs
@@ -413,7 +413,7 @@ namespace Emby.Server.Implementations.Plugins
/// </summary>
/// <param name="type">The type.</param>
/// <returns>System.Object.</returns>
- private object? CreatePluginInstance(Type type)
+ private IPlugin? CreatePluginInstance(Type type)
{
// Find the record for this plugin.
var plugin = GetPluginByType(type);