From a2fd11a339508b028f9bad7d093b6340ffb5aafe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Cie=C5=9Blak?= Date: Fri, 29 Jul 2022 11:48:53 +0200 Subject: [PATCH] fix(community): Send community invitation fixed --- ui/app/AppLayouts/Chat/views/CommunitySettingsView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/views/CommunitySettingsView.qml b/ui/app/AppLayouts/Chat/views/CommunitySettingsView.qml index 7b07426662..934af6118f 100644 --- a/ui/app/AppLayouts/Chat/views/CommunitySettingsView.qml +++ b/ui/app/AppLayouts/Chat/views/CommunitySettingsView.qml @@ -228,7 +228,7 @@ StatusAppTwoPanelLayout { } onSendInvites: { - const error = root.communitySectionModule.inviteUsersToCommunity(JSON.stringify(pubKeys)) + const error = root.chatCommunitySectionModule.inviteUsersToCommunity(JSON.stringify(pubKeys)) processInviteResult(error) } }