Improve kick state to not show if the target was not joined to begin with

This commit is contained in:
Michael Telatynski 2021-04-12 12:13:28 +01:00
parent 853b218d8a
commit c1d88be260

View File

@ -95,9 +95,10 @@ function textForMemberEvent(ev) {
senderName,
targetName,
}) + ' ' + reason;
} else {
// sender is not target and made the target leave, if not from invite/ban then this is a kick
} else if (prevContent.membership === "join") {
return _t('%(senderName)s kicked %(targetName)s.', {senderName, targetName}) + ' ' + reason;
} else {
return "";
}
}
}