mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-17 05:43:51 +02:00
bugfixes
This commit is contained in:
@@ -5479,7 +5479,8 @@ if (window.CefSharp) {
|
||||
}
|
||||
D.users = [];
|
||||
if (!L.isOffline) {
|
||||
for (var { ref } of this.friends.values()) {
|
||||
for (var userId of this.friends.keys()) {
|
||||
var ref = API.cachedUsers.get(userId);
|
||||
if (ref &&
|
||||
ref.location === D.ref.location) {
|
||||
D.users.push(ref);
|
||||
@@ -5886,7 +5887,8 @@ if (window.CefSharp) {
|
||||
users: []
|
||||
};
|
||||
}
|
||||
for (var { ref } of this.friends.values()) {
|
||||
for (var userId of this.friends.keys()) {
|
||||
var ref = API.cachedUsers.get(userId);
|
||||
if (ref &&
|
||||
ref.$location.worldId === D.id) {
|
||||
({ instanceId } = ref.$location);
|
||||
|
||||
Reference in New Issue
Block a user