mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 06:56:04 +02:00
Fix friendsList platform icons
This commit is contained in:
+12
-1
@@ -5148,7 +5148,18 @@ speechSynthesis.getVoices();
|
|||||||
// Do Not Disturb
|
// Do Not Disturb
|
||||||
style.busy = true;
|
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;
|
style.mobile = true;
|
||||||
}
|
}
|
||||||
return style;
|
return style;
|
||||||
|
|||||||
Reference in New Issue
Block a user