Updates and fixes

This commit is contained in:
Natsumi
2024-05-23 21:11:46 +12:00
parent d9bb77d395
commit 55ebcb1ad7
5 changed files with 27 additions and 38 deletions

View File

@@ -1157,7 +1157,7 @@ namespace VRCX
{
// 2023.09.26 04:12:57 Warning - Could not Start OSC: Address already in use
if (string.Compare(line, offset, "VRChat could not start OSC server, TLDR: delete install.exe (https://vrchat.canny.io/bug-reports/p/installexe-breaks-osc-port-binding): ", 0, 21, StringComparison.Ordinal) != 0)
if (string.Compare(line, offset, "Could not Start OSC: ", 0, 21, StringComparison.Ordinal) != 0)
return false;
AppendLog(new[]
@@ -1165,7 +1165,7 @@ namespace VRCX
fileInfo.Name,
ConvertLogTimeToISO8601(line),
"event",
line.Substring(offset)
$"VRChat could not start OSC server, You may be affected by (https://vrchat.canny.io/bug-reports/p/installexe-breaks-osc-port-binding) \"{line.Substring(offset)}\""
});
return true;
}