use this._entry here (once updated by super.updateEntry)

This commit is contained in:
Bruno Windels 2022-01-14 16:20:14 +01:00
parent 5f99c2360c
commit 2321228981

View file

@ -117,16 +117,16 @@ export class BaseMessageTile extends SimpleTile {
} }
updateEntry(entry, param, tilesCreator) { updateEntry(entry, param, tilesCreator) {
this._updateReplyTileIfNeeded(tilesCreator);
const action = super.updateEntry(entry, param, tilesCreator); const action = super.updateEntry(entry, param, tilesCreator);
if (action.shouldUpdate) { if (action.shouldUpdate) {
this._updateReactions(); this._updateReactions();
} }
this._updateReplyTileIfNeeded(tilesCreator);
return action; return action;
} }
_updateReplyTileIfNeeded(tilesCreator) { _updateReplyTileIfNeeded(tilesCreator) {
const replyEntry = entry.contextEntry; const replyEntry = this._entry.contextEntry;
if (replyEntry) { if (replyEntry) {
// this is an update to contextEntry used for replyPreview // this is an update to contextEntry used for replyPreview
const action = this._replyTile?.updateEntry(replyEntry, param, tilesCreator); const action = this._replyTile?.updateEntry(replyEntry, param, tilesCreator);