Try to fix update peer count

This commit is contained in:
Raven Scott 2024-06-08 15:32:21 -04:00
parent ccf34e9637
commit d1779cb1a7

6
app.js
View File

@ -250,7 +250,7 @@ function onMessageAdded(from, message, avatar) {
$div.classList.add('message');
const $img = document.createElement('img');
$img.src = avatar || 'https://via.placeholder.com/40';
$img.src = avatar || 'https://via.placeholder.com/40'; // Default to a placeholder image if avatar URL is not provided
$div.appendChild($img);
const $content = document.createElement('div');
@ -282,7 +282,9 @@ function truncateHash(hash) {
async function updateIcon(username, avatarBuffer) {
const userIcon = document.querySelector(`img[src*="${username}.png"]`);
if (userIcon) {
userIcon.src = URL.createObjectURL(new Blob([avatarBuffer]));
const servePort = 1337;
const avatarUrl = `http://localhost:${servePort}/icons/${username}.png`;
userIcon.src = avatarUrl;
}
}