fix: fix access to root store property for user online status

There seems to have been a confusion in how the store is named.
This commit is contained in:
Pascal Precht 2021-12-06 13:14:41 +01:00 committed by r4bbit.eth
parent a7753e27a7
commit 18518607c7
1 changed files with 1 additions and 1 deletions

View File

@ -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
}
}