mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-04 13:56:07 +02:00
Fix offline orange status users appearing as online
Another sad fix
This commit is contained in:
@@ -5179,6 +5179,10 @@ speechSynthesis.getVoices();
|
|||||||
} else if (user.status === 'active') {
|
} else if (user.status === 'active') {
|
||||||
// Online
|
// Online
|
||||||
style.active = true;
|
style.active = true;
|
||||||
|
} else if ((!this.friendsGroup0_.filter(e => e.id === user.id).length > 0) &&
|
||||||
|
(!this.friendsGroup1_.filter(e => e.id === user.id).length > 0)) {
|
||||||
|
// Offline
|
||||||
|
style.offline = true;
|
||||||
} else if (user.status === 'join me') {
|
} else if (user.status === 'join me') {
|
||||||
// Join Me
|
// Join Me
|
||||||
style.joinme = true;
|
style.joinme = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user