From 6ecfe073e75837675202ffe8a49a21a97335bd58 Mon Sep 17 00:00:00 2001 From: Kukks Date: Tue, 19 Dec 2023 10:34:45 +0100 Subject: [PATCH] disable cj plugin on next btcpay release --- BTCPayServer/Plugins/PluginManager.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/BTCPayServer/Plugins/PluginManager.cs b/BTCPayServer/Plugins/PluginManager.cs index bf7c80125..79cc4625e 100644 --- a/BTCPayServer/Plugins/PluginManager.cs +++ b/BTCPayServer/Plugins/PluginManager.cs @@ -189,8 +189,15 @@ namespace BTCPayServer.Plugins { if (plugin.Identifier == "BTCPayServer.Plugins.Prism" && plugin.Version <= new Version("1.1.18")) { + QueueCommands(pluginsFolder, ("disable", plugin.Identifier)); logger.LogWarning("Please update your prism plugin, this version is incompatible"); continue; + } + if (plugin.Identifier == "BTCPayServer.Plugins.Wabisabi" && plugin.Version <= new Version("1.0.66")) + { + + QueueCommands(pluginsFolder, ("disable", plugin.Identifier)); + continue; } try {