From e445c2932afe8107846f85e308941d75350be013 Mon Sep 17 00:00:00 2001 From: BaronGreenback Date: Fri, 18 Dec 2020 08:23:15 +0000 Subject: [PATCH] Update Jellyfin.Api/Controllers/PluginsController.cs Co-authored-by: Cody Robibero --- Jellyfin.Api/Controllers/PluginsController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jellyfin.Api/Controllers/PluginsController.cs b/Jellyfin.Api/Controllers/PluginsController.cs index 6db74571c..5a3a3eef9 100644 --- a/Jellyfin.Api/Controllers/PluginsController.cs +++ b/Jellyfin.Api/Controllers/PluginsController.cs @@ -219,7 +219,7 @@ namespace Jellyfin.Api.Controllers if (plugin != null) { - _installationManager.UninstallPlugin(plugin!); + _installationManager.UninstallPlugin(plugin); return NoContent(); }