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

pull/21833/head
Michael Telatynski 2021-04-12 12:13:28 +01:00
parent 853b218d8a
commit c1d88be260
1 changed files with 3 additions and 2 deletions

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 "";
}
}
}