From 666f63db0ee9f81d6691f7061b0aca9d61086d0f Mon Sep 17 00:00:00 2001 From: MichaelLaffan1 Date: Tue, 7 Nov 2023 17:48:57 -0500 Subject: [PATCH] Fix profile picture issue Fixed a bug where the profile picture of a user on the add-friends page would not show. --- client/agora/public/js/friends.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/agora/public/js/friends.js b/client/agora/public/js/friends.js index 2e55731c..61fcda84 100644 --- a/client/agora/public/js/friends.js +++ b/client/agora/public/js/friends.js @@ -73,7 +73,8 @@ function createUserCard( userData ){ username.id = userData.userId; username.innerText = userData.username; var userProfile = document.createElement( "img" ); - userProfile.src = userData.profileFilename; + userProfile.width = 225; + userProfile.src = "/assets/uploads/profile/" + userData.profileFilename; userProfile.alt = "user's profile"; var userContainer = document.createElement( "div" ); userContainer.id = "user-container-" + userData.userId;