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