Fix showing old name for rename events

This commit is contained in:
Tobias Fella
2022-11-10 15:05:30 +01:00
parent 824fa469ef
commit d02b4007c0

View File

@@ -98,7 +98,7 @@ Control {
Layout.fillWidth: true
wrapMode: Text.WordWrap
textFormat: Text.RichText
text: `<style>a {text-decoration: none;}</style><a href="https://matrix.to/#/${author.id}" style="color: ${author.color}">${currentRoom.htmlSafeMemberName(author.id)}</a> ${aggregateDisplay}`
text: `<style>a {text-decoration: none;}</style><a href="https://matrix.to/#/${author.id}" style="color: ${author.color}">${model.authorDisplayName}</a> ${aggregateDisplay}`
onLinkActivated: RoomManager.openResource(link)
}
}