mirror of
				https://github.com/pierre42100/ComunicWeb
				synced 2025-11-03 19:54:14 +00:00 
			
		
		
		
	Handle the messages of people who left the conversation
This commit is contained in:
		@@ -879,11 +879,22 @@ const ConvChatWindow = {
 | 
			
		||||
		//Load user informations
 | 
			
		||||
		let userInfo = conversationInfo.membersInfos.get(message.user_id);
 | 
			
		||||
		if(userInfo) {
 | 
			
		||||
			//Replace poster name
 | 
			
		||||
			usernameElem.innerHTML = userInfo.fullName;
 | 
			
		||||
			userAccountImage.src = userInfo.image;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		else {
 | 
			
		||||
			async () => {
 | 
			
		||||
				try {
 | 
			
		||||
					const userInfo = await userInfo(message.user_id);
 | 
			
		||||
					usernameElem.innerHTML = userInfo.fullName;
 | 
			
		||||
					userAccountImage.src = userInfo.image;
 | 
			
		||||
				} catch(e) {
 | 
			
		||||
					console.error(e);
 | 
			
		||||
				}
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		//Add message
 | 
			
		||||
		var messageTargetElem = createElem2({
 | 
			
		||||
			appendTo: messageContainer,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user