diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2022-10-05 17:25:01 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2022-10-05 17:25:01 +0200 |
commit | d70a344a4d3b2ea9b1cb9c89863b3beea96700cb (patch) | |
tree | 0e866df85f101df2af029c658862c8e06aacf2fc /resources | |
parent | Update translations (diff) | |
download | nheko-d70a344a4d3b2ea9b1cb9c89863b3beea96700cb.tar.xz |
Fix userprofile on roomlist
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/RoomList.qml | 2 |
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(); |