From 1c628492e89f716f74af7bfaeecdb019d5bee2b0 Mon Sep 17 00:00:00 2001 From: Connection Refused Date: Sun, 10 May 2020 18:16:07 +0800 Subject: [PATCH] Fix NFController --- 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 a206db7f..78149c34 100644 --- a/Netch/Controllers/NFController.cs +++ b/Netch/Controllers/NFController.cs @@ -185,7 +185,7 @@ namespace Netch.Controllers File.Delete("logging\\redirector.log"); } - Instance.StartInfo.Arguments += + $" -t {Global.Settings.RedirectorTCPPort}"; + Instance.StartInfo.Arguments += $" -t {Global.Settings.RedirectorTCPPort}"; Utils.Logging.Info(Instance.StartInfo.Arguments); Instance.OutputDataReceived += OnOutputDataReceived; Instance.ErrorDataReceived += OnOutputDataReceived;