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:
parent
5b3a115f55
commit
c65de87ad0
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue