Not sure why I try to access a non-existent identity property here,
but it's fixed now.
Gbp-Pq: Name upstream_128cdaa7_Fix-a-crash-when-trying-to-block-an-account-through-the-post-menu.patch
}
onTriggered: {
if (root.authorIdentity.relationship && root.authorIdentity.relationship.blocking) {
- AccountManager.selectedAccount.unblockAccount(root.authorIdentity.identity);
+ AccountManager.selectedAccount.unblockAccount(root.authorIdentity);
} else {
- AccountManager.selectedAccount.blockAccount(root.authorIdentity.identity);
+ AccountManager.selectedAccount.blockAccount(root.authorIdentity);
}
}
}