Fix copy for call hangup previews

This commit is contained in:
Michael Telatynski 2020-11-03 15:22:23 +00:00
parent 6a916757df
commit 0da23e2cbd
2 changed files with 4 additions and 4 deletions

View file

@ -24,9 +24,9 @@ export class CallHangupEvent implements IPreview {
public getTextFor(event: MatrixEvent, tagId?: TagID): string {
if (shouldPrefixMessagesIn(event.getRoomId(), tagId)) {
if (isSelf(event)) {
return _t("You left the call");
return _t("You ended the call");
} else {
return _t("%(senderName)s left the call", {senderName: getSenderName(event)});
return _t("%(senderName)s ended the call", {senderName: getSenderName(event)});
}
} else {
return _t("Call ended");