mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 06:56:04 +02:00
bugfix
This commit is contained in:
+4
-2
@@ -5903,7 +5903,8 @@ CefSharp.BindObjectAsync(
|
|||||||
}
|
}
|
||||||
if (this.isGameRunning &&
|
if (this.isGameRunning &&
|
||||||
this.lastLocation === L.tag) {
|
this.lastLocation === L.tag) {
|
||||||
users.push(API.currentUser);
|
var ref = API.cachedUsers.get(API.currentUser.id);
|
||||||
|
users.push((ref === undefined) ? API.currentUser : ref);
|
||||||
}
|
}
|
||||||
users.sort(compareByDisplayName);
|
users.sort(compareByDisplayName);
|
||||||
D.users = users;
|
D.users = users;
|
||||||
@@ -6402,7 +6403,8 @@ CefSharp.BindObjectAsync(
|
|||||||
};
|
};
|
||||||
instances[instance.id] = instance;
|
instances[instance.id] = instance;
|
||||||
}
|
}
|
||||||
instance.users.push(API.currentUser);
|
var ref = API.cachedUsers.get(API.currentUser.id);
|
||||||
|
instance.users.push((ref === undefined) ? API.currentUser : ref);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
var rooms = [];
|
var rooms = [];
|
||||||
|
|||||||
Reference in New Issue
Block a user