Fix types
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
6a88ac900c
commit
0cba943f96
1 changed files with 6 additions and 3 deletions
|
@ -109,15 +109,18 @@ export default class MKeyVerificationConclusion extends React.Component<IProps>
|
||||||
let title;
|
let title;
|
||||||
|
|
||||||
if (request.done) {
|
if (request.done) {
|
||||||
title = _t("You verified %(name)s", { name: getNameForEventRoom(request.otherUserId, mxEvent) });
|
title = _t(
|
||||||
|
"You verified %(name)s",
|
||||||
|
{ name: getNameForEventRoom(request.otherUserId, mxEvent.getRoomId()) },
|
||||||
|
);
|
||||||
} else if (request.cancelled) {
|
} else if (request.cancelled) {
|
||||||
const userId = request.cancellingUserId;
|
const userId = request.cancellingUserId;
|
||||||
if (userId === myUserId) {
|
if (userId === myUserId) {
|
||||||
title = _t("You cancelled verifying %(name)s",
|
title = _t("You cancelled verifying %(name)s",
|
||||||
{ name: getNameForEventRoom(request.otherUserId, mxEvent) });
|
{ name: getNameForEventRoom(request.otherUserId, mxEvent.getRoomId()) });
|
||||||
} else {
|
} else {
|
||||||
title = _t("%(name)s cancelled verifying",
|
title = _t("%(name)s cancelled verifying",
|
||||||
{ name: getNameForEventRoom(userId, mxEvent) });
|
{ name: getNameForEventRoom(userId, mxEvent.getRoomId()) });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue