mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 22:36:24 +00:00
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)
|
const communityName = getSectionNameById(result.communityId)
|
||||||
if (!communityName) {
|
if (!communityName) {
|
||||||
// Unknown community, fetch the info if possible
|
// Unknown community, fetch the info if possible
|
||||||
root.requestCommunityInfo(communityId)
|
root.requestCommunityInfo(result.communityId)
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user