From 23bcac0d5d557aeae1c90539dbcce75ac80b352e Mon Sep 17 00:00:00 2001 From: ChsBuffer <33744752+chsbuffer@users.noreply.github.com> Date: Tue, 15 Dec 2020 18:23:19 +0800 Subject: [PATCH] fix: Shadowsocks.HasPlugin typo --- Netch/Servers/Shadowsocks/Shadowsocks.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Netch/Servers/Shadowsocks/Shadowsocks.cs b/Netch/Servers/Shadowsocks/Shadowsocks.cs index d44dcede..469c56c4 100644 --- a/Netch/Servers/Shadowsocks/Shadowsocks.cs +++ b/Netch/Servers/Shadowsocks/Shadowsocks.cs @@ -30,7 +30,7 @@ namespace Netch.Servers.Shadowsocks Type = "SS"; } - public bool HasPlugin() => string.IsNullOrWhiteSpace(Plugin) && string.IsNullOrWhiteSpace(PluginOption); + public bool HasPlugin() => !string.IsNullOrWhiteSpace(Plugin) && !string.IsNullOrWhiteSpace(PluginOption); } public static class SSGlobal