1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

add fallback label for canonical alias events that dont change anything

This commit is contained in:
Bruno Windels
2020-03-10 18:45:51 +01:00
parent f33c930c41
commit 5d7f2f96e7
2 changed files with 7 additions and 0 deletions

View File

@@ -308,10 +308,16 @@ function textForCanonicalAliasEvent(ev) {
});
}
} else {
// both alias and alt_aliases where modified
return _t('%(senderName)s changed the main and alternative addresses for this room.', {
senderName: senderName,
});
}
// in case there is no difference between the two events,
// say something as we can't simply hide the tile from here
return _t('%(senderName)s changed the addresses for this room.', {
senderName: senderName,
});
}
function textForCallAnswerEvent(event) {