From edc61079c496baeaadff3e4cd6e41b2f717d30e5 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 20 Jul 2018 18:28:37 -0400 Subject: [PATCH] blacklist non-functional plugin --- Emby.Server.Implementations/ApplicationHost.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index b80f48b9f4..ad5c938da2 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -1924,7 +1924,8 @@ private bool EnablePlugin(string path) "MediaBrowser.Plugins.ITV.dll", "MediaBrowser.Plugins.Lastfm.dll", "ServerRestart.dll", - "MediaBrowser.Plugins.NotifyMyAndroidNotifications.dll" + "MediaBrowser.Plugins.NotifyMyAndroidNotifications.dll", + "MetadataViewer.dll" }; return !exclude.Contains(filename ?? string.Empty, StringComparer.OrdinalIgnoreCase);