diff --git a/Dotnet/AppApi/Folders.cs b/Dotnet/AppApi/Folders.cs index 117fa22c..8143dad2 100644 --- a/Dotnet/AppApi/Folders.cs +++ b/Dotnet/AppApi/Folders.cs @@ -100,7 +100,7 @@ namespace VRCX public bool OpenVrcAppDataFolder() { - var path = GetVRChatAppDataLocation(); + var path = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"Low\VRChat\VRChat"; if (!Directory.Exists(path)) return false; diff --git a/Dotnet/Program.cs b/Dotnet/Program.cs index 5c1ca866..e96d2fe9 100644 --- a/Dotnet/Program.cs +++ b/Dotnet/Program.cs @@ -140,7 +140,7 @@ namespace VRCX var messageBoxResult = MessageBox.Show(cpuError.Value.Item1, "Potentially Faulty CPU Detected", MessageBoxButtons.YesNo, MessageBoxIcon.Error); if (messageBoxResult == DialogResult.Yes) { - Process.Start(cpuError.Value.Item2); + AppApi.Instance.OpenLink(cpuError.Value.Item2); } } logger.Fatal(e, "Unhandled Exception, program dying"); diff --git a/VRCX.csproj b/VRCX.csproj index 056c13db..ef623817 100644 --- a/VRCX.csproj +++ b/VRCX.csproj @@ -125,11 +125,11 @@ - + - + diff --git a/html/src/app.js b/html/src/app.js index 27935f09..9c9f7692 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -30750,6 +30750,8 @@ speechSynthesis.getVoices(); if (typeof ref !== 'undefined') { json.user = ref; json.$displayName = ref.displayName; + } else { + json.$displayName = json.user?.displayName; } } }