Skip to content
This repository has been archived by the owner on Jun 23, 2022. It is now read-only.

Commit

Permalink
Update DNSCryptHelper.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaczero committed Sep 11, 2020
1 parent a2e607e commit 4316ed6
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions DNSChanger/DNSCryptHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -353,10 +353,7 @@ private static void ExecuteProcessHidden(string path, string arguments = "")
private static void ExecuteProcess(string path, string arguments = "")
{
SentrySdk.AddBreadcrumb($"{nameof(ExecuteProcess)}: {nameof(arguments)}={arguments}", nameof(DNSCryptHelper));

var process = Process.Start(path, arguments);

process.WaitForExit();
Process.Start(path, arguments).WaitForExit();
}
}
}

0 comments on commit 4316ed6

Please sign in to comment.