mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 23:03:51 +02:00
Fix parsing of user id (#952)
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user