From f244639fbcfcf4494308e99a1f51f9c0fee2feda Mon Sep 17 00:00:00 2001 From: Usman Shafiq Date: Thu, 24 Oct 2024 06:57:56 -0400 Subject: [PATCH] Fix Application Quit detection (#953) --- Dotnet/LogWatcher.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dotnet/LogWatcher.cs b/Dotnet/LogWatcher.cs index 87ce0356..4fd670a8 100644 --- a/Dotnet/LogWatcher.cs +++ b/Dotnet/LogWatcher.cs @@ -1039,6 +1039,11 @@ namespace VRCX if (string.Compare(line, offset, "VRCApplication: OnApplicationQuit at ", 0, 37, StringComparison.Ordinal) != 0) return false; + // 2024.10.23 21:18:34 Log - VRCApplication: HandleApplicationQuit at 936.5161 + + if (string.Compare(line, offset, "VRCApplication: HandleApplicationQuit at ", 0, 37, StringComparison.Ordinal) != 0) + return false; + AppendLog(new[] { fileInfo.Name,