Add "No answer" state

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-08-13 11:19:14 +02:00
parent c79852a9f0
commit 032d2866a3
No known key found for this signature in database
GPG key ID: 55C211A1226CB17D
2 changed files with 3 additions and 2 deletions

View file

@ -175,7 +175,7 @@ export default class CallEvent extends React.PureComponent<IProps, IState> {
} else if (hangupReason === CallErrorCode.InviteTimeout) {
return (
<div className="mx_CallEvent_content">
{ _t("Missed call") }
{ _t("No answer") }
{ this.renderCallBackButton(_t("Call back")) }
</div>
);