From a485a4647c3c1b1c2f7e904ec3fd82a3881d09f9 Mon Sep 17 00:00:00 2001 From: AmazingDM Date: Sat, 20 Mar 2021 17:56:45 +0800 Subject: [PATCH] fix error set TYPE_FILTERCHILDPROC --- Netch/Controllers/NFController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Netch/Controllers/NFController.cs b/Netch/Controllers/NFController.cs index 8e4f7bcd..8ec8014f 100644 --- a/Netch/Controllers/NFController.cs +++ b/Netch/Controllers/NFController.cs @@ -49,7 +49,7 @@ namespace Netch.Controllers if (Global.Settings.RedirectICMP) aio_dial((int) NameList.TYPE_REDIRCTOR_ICMP, Global.Settings.RedirectICMPAddr); - aio_dial((int) NameList.TYPE_FILTERCHILDPROC, Global.Settings.ChildProcessHandle.ToString()); + aio_dial((int) NameList.TYPE_FILTERCHILDPROC, Global.Settings.ChildProcessHandle.ToString().ToLower()); if (!aio_init()) throw new MessageException("Redirector Start failed, run Netch with \"-console\" argument");