Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
2dust committed Mar 2, 2024
1 parent 4b2b459 commit afaad49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v2rayN/v2rayN/Handler/CoreHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ private void KillProcess(Process? proc)
}
try
{
proc.CloseMainWindow();
proc.Kill();
proc.WaitForExit(100);
if (!proc.HasExited)
{
Expand Down

0 comments on commit afaad49

Please sign in to comment.