Fix room image avatars not showing in the room directory (#133)

Fix room image avatars not showing in the room directory

Fix https://github.com/matrix-org/matrix-public-archive/issues/95
This commit is contained in:
Eric Eastwood 2022-11-10 00:29:44 -06:00 committed by GitHub
parent 3d604a1d87
commit 8a2dabe97b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -104,9 +104,9 @@ class ArchiveRoomViewModel extends ViewModel {
avatarTitle: this._room.name || this._room.canonicalAlias || this._room.id,
avatarLetterString:
this._room.name ||
// Strip the `#` off the alias
// Skip to the first letter after the `#` sigil from the alias
this._room.canonicalAlias?.[1] ||
// Strip the `!` off the room_id
// Skip to the first letter after the `!` sigil from the room ID
this._room.id?.[1],
entityId: this._room.id,
});

View File

@ -7,13 +7,13 @@ class RoomCardView extends TemplateView {
render(t, vm) {
const avatarViewModel = new AvatarViewModel({
homeserverUrlToPullMediaFrom: vm.homeserverUrlToPullMediaFrom,
avatarUrl: vm.avatarUrl,
avatarUrl: vm.mxcAvatarUrl,
avatarTitle: vm.name || vm.canonicalAlias || vm.roomId,
avatarLetterString:
vm.name ||
// Strip the `#` off the alias
// Skip to the first letter after the `#` sigil from the alias
vm.canonicalAlias?.[1] ||
// Strip the `!` off the room_id
// Skip to the first letter after the `!` sigil from the room ID
vm.roomId?.[1],
entityId: vm.roomId,
});