forked from mystiq/hydrogen-web
Don't check param for reply
This commit is contained in:
parent
28a534ee49
commit
455b747a1c
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ export class SimpleTile extends ViewModel {
|
||||||
|
|
||||||
// update received for already included (falls within sort keys) entry
|
// update received for already included (falls within sort keys) entry
|
||||||
updateEntry(entry, param) {
|
updateEntry(entry, param) {
|
||||||
const replyEntry = param?.reply ?? entry.contextEntry;
|
const replyEntry = 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);
|
const action = this._replyTile?.updateEntry(replyEntry);
|
||||||
|
|
Loading…
Reference in a new issue