forked from mystiq/hydrogen-web
Don't pass relatedEntry in param
This commit is contained in:
parent
66fa8d84a7
commit
93bbeee400
1 changed files with 1 additions and 1 deletions
|
@ -275,7 +275,7 @@ export class Timeline {
|
||||||
if (relatedEntry?.addRelation(entry)) {
|
if (relatedEntry?.addRelation(entry)) {
|
||||||
// update other entries for which this entry is a context entry
|
// update other entries for which this entry is a context entry
|
||||||
relatedEntry.contextForEntries?.forEach(e => {
|
relatedEntry.contextForEntries?.forEach(e => {
|
||||||
this._remoteEntries.findAndUpdate(te => te.id === e.id, () => { return { reply: relatedEntry }; });
|
this._remoteEntries.findAndUpdate(te => te.id === e.id, () => true);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue