mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
Fix friends list sorting
This commit is contained in:
+6
-1
@@ -684,6 +684,7 @@ speechSynthesis.getVoices();
|
|||||||
var friendCtx = $app.friends.get(ref.id);
|
var friendCtx = $app.friends.get(ref.id);
|
||||||
if (friendCtx) {
|
if (friendCtx) {
|
||||||
friendCtx.ref = ref;
|
friendCtx.ref = ref;
|
||||||
|
friendCtx.name = ref.displayName;
|
||||||
}
|
}
|
||||||
if (ref.id === this.currentUser.id) {
|
if (ref.id === this.currentUser.id) {
|
||||||
if (ref.status) {
|
if (ref.status) {
|
||||||
@@ -4567,7 +4568,7 @@ speechSynthesis.getVoices();
|
|||||||
) {
|
) {
|
||||||
if (this.debugFriendState) {
|
if (this.debugFriendState) {
|
||||||
console.log(
|
console.log(
|
||||||
`falsePositiveOffline ${ctx.name} currentState:${ctx.ref.state} expectedState:${newState}`
|
`falsePositiveOffline ${ctx.name} currentState:${ctx.state} expectedState:${newState}`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
@@ -5367,6 +5368,10 @@ speechSynthesis.getVoices();
|
|||||||
throw err;
|
throw err;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
$app.sortVIPFriends = true;
|
||||||
|
$app.sortOnlineFriends = true;
|
||||||
|
$app.sortActiveFriends = true;
|
||||||
|
$app.sortOfflineFriends = true;
|
||||||
$app.getAvatarHistory();
|
$app.getAvatarHistory();
|
||||||
$app.getAllUserMemos();
|
$app.getAllUserMemos();
|
||||||
if ($app.randomUserColours) {
|
if ($app.randomUserColours) {
|
||||||
|
|||||||
Reference in New Issue
Block a user