From 66f8e9252d811954b40b2046a055bc03f050fe89 Mon Sep 17 00:00:00 2001 From: Usman Shafiq Date: Thu, 24 Oct 2024 06:57:48 -0400 Subject: [PATCH] Fix parsing of user id (#952) --- Dotnet/LogWatcher.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dotnet/LogWatcher.cs b/Dotnet/LogWatcher.cs index ad94e0af..87ce0356 100644 --- a/Dotnet/LogWatcher.cs +++ b/Dotnet/LogWatcher.cs @@ -1298,7 +1298,7 @@ namespace VRCX if (pos >= 0) { userDisplayName = userInfo.Substring(0, pos); - userId = userInfo.Substring(pos + 2, userInfo.LastIndexOf(')') - (pos + 3)); + userId = userInfo.Substring(pos + 2, userInfo.LastIndexOf(')') - (pos + 4)); } else {