mirror of
https://github.com/Shik3i/KoalaSync.git
synced 2026-09-01 05:29:22 +00:00
fix(ui): add missing avatar emoji in episode lobby UI
This commit is contained in:
+2
-1
@@ -1434,10 +1434,11 @@ function updateLobbyUI(lobby, peers) {
|
|||||||
peers.forEach(p => {
|
peers.forEach(p => {
|
||||||
const pId = typeof p === 'object' ? p.peerId : p;
|
const pId = typeof p === 'object' ? p.peerId : p;
|
||||||
const pName = (typeof p === 'object' && p.username) ? p.username : pId;
|
const pName = (typeof p === 'object' && p.username) ? p.username : pId;
|
||||||
|
const avatar = getAvatarForName(pName);
|
||||||
const isReady = readySet.has(pId);
|
const isReady = readySet.has(pId);
|
||||||
const icon = isReady ? '\u2705' : '\u23f3';
|
const icon = isReady ? '\u2705' : '\u23f3';
|
||||||
const label = isReady ? 'Ready' : 'Loading...';
|
const label = isReady ? 'Ready' : 'Loading...';
|
||||||
peerLines.push(`${icon} ${pName} \u2014 ${label}`);
|
peerLines.push(`${icon} ${avatar} ${pName} \u2014 ${label}`);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user