From 8c54e4ca77fb6310e6555ee0d3c82e862ca60b93 Mon Sep 17 00:00:00 2001 From: Raven Scott Date: Sat, 8 Jun 2024 15:48:56 -0400 Subject: [PATCH] Try to fix update icons --- app.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app.js b/app.js index 3c8ed9c..e872a12 100644 --- a/app.js +++ b/app.js @@ -121,7 +121,7 @@ function registerUser(e) { reader.onload = (event) => { const buffer = new Uint8Array(event.target.result); drive.put(`/icons/${regUsername}.png`, buffer); - userAvatar = URL.createObjectURL(new Blob([buffer])); + userAvatar = `http://localhost:1337/icons/${regUsername}.png`; // Set the correct URL registeredUsers[regUsername] = userAvatar; localStorage.setItem('registeredUsers', JSON.stringify(registeredUsers)); continueRegistration(regUsername); @@ -285,11 +285,10 @@ async function updateIcon(username, avatarBuffer) { // This can be adjusted as per your needs const userIcon = document.querySelector(`img[src*="${username}.png"]`); if (userIcon) { - userIcon.src = URL.createObjectURL(new Blob([avatarBuffer])); + userIcon.src = `http://localhost:1337/icons/${username}.png`; // Ensure the URL is correct } } - function clearMessages() { const messagesContainer = document.querySelector('#messages'); while (messagesContainer.firstChild) {