Merge pull request #39 from CGQAQ/master

修复v2rayN有几率无法退出问题
This commit is contained in:
2dust
2019-08-26 13:41:38 +08:00
committed by GitHub

View File

@@ -96,7 +96,10 @@ namespace v2rayN.Handler
public void Close()
{
exitFlag_ = true;
connector_.Kill();
if (!connector_.HasExited)
{
connector_.Kill();
}
}
public void run()