unrelated fix: encode user name in matrix.to link
This commit is contained in:
parent
45c8e3a793
commit
d7b024eac1
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ export class MemberDetailsViewModel extends ViewModel {
|
|||
}
|
||||
|
||||
get linkToUser() {
|
||||
return `https://matrix.to/#/${this._member.userId}`;
|
||||
return `https://matrix.to/#/${encodeURIComponent(this._member.userId)}`;
|
||||
}
|
||||
|
||||
async openDirectMessage() {
|
||||
|
|
Reference in a new issue