ensure images load in reply preview in timeline

This commit is contained in:
Bruno Windels 2022-01-17 16:48:36 +01:00
parent f379bf2341
commit b0e8506cb5

View file

@ -31,6 +31,12 @@ export class BaseMessageTile extends SimpleTile {
this._updateReplyTileIfNeeded(options.tilesCreator, undefined);
}
notifyVisible() {
super.notifyVisible();
this._replyTile?.notifyVisible();
}
get _mediaRepository() {
return this._room.mediaRepository;
}