diff --git a/src/app/pages/chat/group-messages/group-messages.page.html b/src/app/pages/chat/group-messages/group-messages.page.html
index 07b81b08a..dc522f73c 100644
--- a/src/app/pages/chat/group-messages/group-messages.page.html
+++ b/src/app/pages/chat/group-messages/group-messages.page.html
@@ -60,7 +60,7 @@
{{msg.u.name ?? ""}}
- {{showDateDuration(msg._updatedAt)}}
+ {{msg.duration}}
{{msg.msg}}
@@ -75,7 +75,7 @@
{{msg.u.name ?? ""}}
- {{showDateDuration(msg._updatedAt)}}
+ {{msg.duration}}
{{msg.msg}}
@@ -96,7 +96,7 @@
{{msg.u.name ?? ""}}
- {{showDateDuration(msg._updatedAt)}}
+ {{msg.duration}}
diff --git a/src/app/pages/chat/messages/messages.page.html b/src/app/pages/chat/messages/messages.page.html
index 8b0b8ccfc..cf8e17568 100644
--- a/src/app/pages/chat/messages/messages.page.html
+++ b/src/app/pages/chat/messages/messages.page.html
@@ -53,7 +53,7 @@
{{msg.u.name}}
- {{showDateDuration(msg._updatedAt)}}
+ {{msg.duration}}
{{msg.msg}}
@@ -64,7 +64,7 @@