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();
|