requested change.
This commit is contained in:
parent
9720576f69
commit
ec6443ccad
|
@ -63,7 +63,8 @@ class GlobalTimelineChannel extends Channel {
|
||||||
reactionsToFetch.push(this.assignMyReaction(note.renote.reply, this.noteEntityService));
|
reactionsToFetch.push(this.assignMyReaction(note.renote.reply, this.noteEntityService));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (this.user && note.reply) {
|
}
|
||||||
|
if (this.user && note.reply) {
|
||||||
reactionsToFetch.push(this.assignMyReaction(note.reply, this.noteEntityService));
|
reactionsToFetch.push(this.assignMyReaction(note.reply, this.noteEntityService));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -87,7 +87,8 @@ class HomeTimelineChannel extends Channel {
|
||||||
reactionsToFetch.push(this.assignMyReaction(note.renote.reply, this.noteEntityService));
|
reactionsToFetch.push(this.assignMyReaction(note.renote.reply, this.noteEntityService));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (this.user && note.reply) {
|
}
|
||||||
|
if (this.user && note.reply) {
|
||||||
reactionsToFetch.push(this.assignMyReaction(note.reply, this.noteEntityService));
|
reactionsToFetch.push(this.assignMyReaction(note.reply, this.noteEntityService));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -101,7 +101,8 @@ class HybridTimelineChannel extends Channel {
|
||||||
reactionsToFetch.push(this.assignMyReaction(note.renote.reply, this.noteEntityService));
|
reactionsToFetch.push(this.assignMyReaction(note.renote.reply, this.noteEntityService));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (this.user && note.reply) {
|
}
|
||||||
|
if (this.user && note.reply) {
|
||||||
reactionsToFetch.push(this.assignMyReaction(note.reply, this.noteEntityService));
|
reactionsToFetch.push(this.assignMyReaction(note.reply, this.noteEntityService));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,8 @@ class LocalTimelineChannel extends Channel {
|
||||||
reactionsToFetch.push(this.assignMyReaction(note.renote.reply, this.noteEntityService));
|
reactionsToFetch.push(this.assignMyReaction(note.renote.reply, this.noteEntityService));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (this.user && note.reply) {
|
}
|
||||||
|
if (this.user && note.reply) {
|
||||||
reactionsToFetch.push(this.assignMyReaction(note.reply, this.noteEntityService));
|
reactionsToFetch.push(this.assignMyReaction(note.reply, this.noteEntityService));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue