Skip to content

Commit

Permalink
Small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Natsumi-sama committed Aug 20, 2024
1 parent 49d1b49 commit 0db5a05
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dotnet/AppApi/Folders.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public bool OpenVrcxAppDataFolder()

public bool OpenVrcAppDataFolder()
{
var path = GetVRChatAppDataLocation();
var path = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"Low\VRChat\VRChat";
if (!Directory.Exists(path))
return false;

Expand Down
2 changes: 1 addition & 1 deletion Dotnet/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ private static void Main()
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");
Expand Down
4 changes: 2 additions & 2 deletions VRCX.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@
<PackageReference Include="DiscordRichPresence" Version="1.2.1.24" />
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="NLog" Version="5.3.2" />
<PackageReference Include="NLog" Version="5.3.3" />
<PackageReference Include="SharpDX.Direct3D11" Version="4.2.0" />
<PackageReference Include="SharpDX.Mathematics" Version="4.2.0" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.118" />
<PackageReference Include="System.Drawing.Common" Version="8.0.7" />
<PackageReference Include="System.Drawing.Common" Version="8.0.8" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
Expand Down
2 changes: 2 additions & 0 deletions html/src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -30749,6 +30749,8 @@ speechSynthesis.getVoices();
if (typeof ref !== 'undefined') {
json.user = ref;
json.$displayName = ref.displayName;
} else {
json.$displayName = json.user?.displayName;
}
}
}
Expand Down

0 comments on commit 0db5a05

Please sign in to comment.