aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Plugins
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-12-18 08:24:26 +0000
committerGitHub <noreply@github.com>2020-12-18 08:24:26 +0000
commit591ad3b04b7816d447ccd60c096a7fe730b3dea6 (patch)
treea85b83ccf7d178684bb2f64d065fae709fdd8359 /Emby.Server.Implementations/Plugins
parent30645e72654e0d4918c86b610cbe9e8c2e4f4907 (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 6eeb8613c..e92b02191 100644
--- a/Emby.Server.Implementations/Plugins/PluginManager.cs
+++ b/Emby.Server.Implementations/Plugins/PluginManager.cs
@@ -450,7 +450,7 @@ namespace Emby.Server.Implementations
}
else
{
- plugin.Instance = (IPlugin)instance;
+ plugin.Instance = instance;
var manifest = plugin.Manifest;
var pluginStr = plugin.Instance.Version.ToString();
bool changed = false;