mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-18 22:33:50 +02:00
Fix friendsList platform icons
This commit is contained in:
@@ -5148,7 +5148,18 @@ speechSynthesis.getVoices();
|
||||
// Do Not Disturb
|
||||
style.busy = true;
|
||||
}
|
||||
if (user.last_platform && user.last_platform !== 'standalonewindows') {
|
||||
if (
|
||||
user.platform &&
|
||||
user.platform !== 'standalonewindows' &&
|
||||
user.platform !== 'web'
|
||||
) {
|
||||
style.mobile = true;
|
||||
}
|
||||
if (
|
||||
user.last_platform &&
|
||||
user.last_platform !== 'standalonewindows' &&
|
||||
user.platform === 'web'
|
||||
) {
|
||||
style.mobile = true;
|
||||
}
|
||||
return style;
|
||||
|
||||
Reference in New Issue
Block a user