Avoid doubling up username in read receipt view

In the ReadReceiptMarker title, use the RoomMember.rawDisplayName because
RoomMember.name may already include the username, which we are going to add
ourselves.
pull/21833/head
Aidan Gauland 2018-02-11 16:27:07 +13:00
parent 97ce84c8e3
commit 0fd9b3e9b2
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ module.exports = React.createClass({
if (this.props.timestamp) {
title = _t(
"Seen by %(displayName)s (%(userName)s) at %(dateTime)s",
{displayName: this.props.member.name,
{displayName: this.props.member.rawDisplayName,
userName: this.props.member.userId,
dateTime: formatDate(new Date(this.props.timestamp), this.props.showTwelveHour)},
);