Fix offline orange status users appearing as online

Another sad fix
This commit is contained in:
Natsumi
2021-03-30 01:30:07 +13:00
parent c165f8112e
commit 90c6ef8310

View File

@@ -5179,6 +5179,10 @@ speechSynthesis.getVoices();
} else if (user.status === 'active') {
// Online
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') {
// Join Me
style.joinme = true;