Fix parsing of user id (#952)

This commit is contained in:
Usman Shafiq
2024-10-24 06:57:48 -04:00
committed by GitHub
parent 766ef240c9
commit 66f8e9252d

View File

@@ -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
{