mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
Fix parsing of user id (#952)
This commit is contained in:
@@ -1298,7 +1298,7 @@ namespace VRCX
|
|||||||
if (pos >= 0)
|
if (pos >= 0)
|
||||||
{
|
{
|
||||||
userDisplayName = userInfo.Substring(0, pos);
|
userDisplayName = userInfo.Substring(0, pos);
|
||||||
userId = userInfo.Substring(pos + 2, userInfo.LastIndexOf(')') - (pos + 3));
|
userId = userInfo.Substring(pos + 2, userInfo.LastIndexOf(')') - (pos + 4));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user