Say Joining space instead of Joining room where we know its a space

This commit is contained in:
Michael Telatynski 2021-09-16 11:20:01 +01:00
parent 4bb9eeb7a5
commit 28bc8010a7
4 changed files with 28 additions and 13 deletions

View file

@ -323,7 +323,7 @@ export default class RoomPreviewBar extends React.Component<IProps, IState> {
const messageCase = this.getMessageCase();
switch (messageCase) {
case MessageCase.Joining: {
title = _t("Joining room …");
title = this.props.oobData.isSpaceRoom ? _t("Joining space …") : _t("Joining room …");
showSpinner = true;
break;
}