mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-13 03:43:50 +02:00
Fix IsDuplicateProcessRunning (#950)
This commit is contained in:
@@ -100,7 +100,9 @@ namespace VRCX
|
||||
|
||||
private static bool IsDuplicateProcessRunning(VrcxLaunchArguements launchArguements)
|
||||
{
|
||||
var processes = Process.GetProcessesByName("VRCX");
|
||||
var processes = Process.GetProcessesByName("VRCX")
|
||||
.Where(x => x.Id != Environment.ProcessId);
|
||||
|
||||
foreach (var process in processes)
|
||||
{
|
||||
var commandLine = string.Empty;
|
||||
|
||||
Reference in New Issue
Block a user