From 18518607c77bb6b01e1ef19454cc567a94c3a56e Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Mon, 6 Dec 2021 13:14:41 +0100 Subject: [PATCH] fix: fix access to root store property for user online status There seems to have been a confusion in how the store is named. --- ui/app/AppLayouts/Chat/ChatLayout.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/ChatLayout.qml b/ui/app/AppLayouts/Chat/ChatLayout.qml index 11f314e08f..376d67885f 100644 --- a/ui/app/AppLayouts/Chat/ChatLayout.qml +++ b/ui/app/AppLayouts/Chat/ChatLayout.qml @@ -186,7 +186,7 @@ StatusAppThreePanelLayout { community: root.rootStore.chatsModelInst.communities.activeCommunity currentUserName: Utils.removeStatusEns(root.rootStore.profileModelInst.ens.preferredUsername || root.rootStore.profileModelInst.profile.username) - currentUserOnline: root.store.userProfileInst.userStatus + currentUserOnline: root.rootStore.userProfileInst.userStatus contactsList: root.rootStore.allContacts } }