Merge pull request #39 from CGQAQ/master

修复v2rayN有几率无法退出问题
pull/43/head
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
1 changed files with 4 additions and 1 deletions

View File

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