Fix VRCX auto updater

This commit is contained in:
Natsumi
2024-06-18 22:17:21 +12:00
parent bfe6d9b3fb
commit 73a9803abd
3 changed files with 22 additions and 13 deletions

View File

@@ -37,7 +37,7 @@ namespace VRCX
try
{
File.Move(Update_Executable, VRCX_Setup_Executable);
var VRCXProcess = new Process
var vrcxProcess = new Process
{
StartInfo = new ProcessStartInfo
{
@@ -47,7 +47,7 @@ namespace VRCX
WorkingDirectory = Program.AppDataDirectory
}
};
VRCXProcess.Start();
vrcxProcess.Start();
Environment.Exit(0);
}
catch (Exception e)