From 1ea764398140ee94330d306542d88eef4d00d08a Mon Sep 17 00:00:00 2001 From: "tiago.kayaya" Date: Fri, 17 Dec 2021 09:40:28 +0100 Subject: [PATCH] show name of user when displaying image, instead of username --- src/app/shared/chat/messages/messages.page.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/shared/chat/messages/messages.page.ts b/src/app/shared/chat/messages/messages.page.ts index 6d8d05816..52a5f4999 100644 --- a/src/app/shared/chat/messages/messages.page.ts +++ b/src/app/shared/chat/messages/messages.page.ts @@ -614,7 +614,7 @@ touchStart(card) { cssClass: 'modal modal-desktop', componentProps: { image: msg.attachments[0].image_url, - username: msg.u.username, + username: msg.u.name, _updatedAt: msg._updatedAt } });