From 8c05ba2289febe8e718a8d145a522864afeb26fb Mon Sep 17 00:00:00 2001 From: Connection Refused Date: Fri, 8 May 2020 16:29:11 +0800 Subject: [PATCH] Fix trojan can not start --- Netch/Controllers/TrojanController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Netch/Controllers/TrojanController.cs b/Netch/Controllers/TrojanController.cs index 8a431924..8a43b045 100644 --- a/Netch/Controllers/TrojanController.cs +++ b/Netch/Controllers/TrojanController.cs @@ -51,7 +51,7 @@ namespace Netch.Controllers Instance = MainController.GetProcess(); Instance.StartInfo.FileName = "bin\\Trojan.exe"; - Instance.StartInfo.Arguments = "-c data\\last.json"; + Instance.StartInfo.Arguments = "-c ..\\data\\last.json"; Instance.OutputDataReceived += OnOutputDataReceived; Instance.ErrorDataReceived += OnOutputDataReceived;