fix: unbreak displaying community invitation bubble

it would fail to fetch the community info due to the undefined variable
name
This commit is contained in:
Lukáš Tinkl 2023-03-24 13:44:32 +01:00 committed by Lukáš Tinkl
parent 5b3a115f55
commit c65de87ad0
1 changed files with 1 additions and 1 deletions

View File

@ -488,7 +488,7 @@ QtObject {
const communityName = getSectionNameById(result.communityId)
if (!communityName) {
// Unknown community, fetch the info if possible
root.requestCommunityInfo(communityId)
root.requestCommunityInfo(result.communityId)
return result
}