summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2022-10-05 17:25:01 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2022-10-05 17:25:01 +0200
commitd70a344a4d3b2ea9b1cb9c89863b3beea96700cb (patch)
tree0e866df85f101df2af029c658862c8e06aacf2fc /resources
parentUpdate translations (diff)
downloadnheko-d70a344a4d3b2ea9b1cb9c89863b3beea96700cb.tar.xz
Fix userprofile on roomlist
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/RoomList.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/RoomList.qml b/resources/qml/RoomList.qml
index a777c369..cfc0e215 100644
--- a/resources/qml/RoomList.qml
+++ b/resources/qml/RoomList.qml
@@ -455,7 +455,7 @@ Page {
 
             function openUserProfile() {
                 Nheko.updateUserProfile();
-                var userProfile = userProfileComponent.createObject(timelineRoot, {
+                var userProfile = Qt.createComponent("qrc:/qml/dialogs/UserProfile.qml").createObject(timelineRoot, {
                     "profile": Nheko.currentUser
                 });
                 userProfile.show();