From 5ca043ad87d56cfaa984f67b84c5e98f1900c61e Mon Sep 17 00:00:00 2001
From: Nicolas Werner <nicolas.werner@hotmail.de>
Date: Mon, 4 Jan 2021 15:10:53 +0100
Subject: [PATCH] Fix user status that got lost at some point

---
 resources/qml/MessageView.qml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/resources/qml/MessageView.qml b/resources/qml/MessageView.qml
index 679c1f506..aa222ac58 100644
--- a/resources/qml/MessageView.qml
+++ b/resources/qml/MessageView.qml
@@ -140,6 +140,15 @@ ListView {
 
                 }
 
+                Label {
+                    color: colors.buttonText
+                    text: TimelineManager.userStatus(modelData.userId)
+                    textFormat: Text.PlainText
+                    elide: Text.ElideRight
+                    width: chat.delegateMaxWidth - parent.spacing * 2 - userName.implicitWidth - avatarSize
+                    font.italic: true
+                }
+
             }
 
         }
-- 
GitLab