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
commit 86b45d18af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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