requested change.

This commit is contained in:
piuvas 2024-12-26 14:49:22 -03:00 committed by kakkokari-gtyih
parent 9720576f69
commit ec6443ccad
4 changed files with 8 additions and 4 deletions

View File

@ -63,7 +63,8 @@ class GlobalTimelineChannel extends Channel {
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));
}

View File

@ -87,7 +87,8 @@ class HomeTimelineChannel extends Channel {
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));
}

View File

@ -101,7 +101,8 @@ class HybridTimelineChannel extends Channel {
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));
}

View File

@ -73,7 +73,8 @@ class LocalTimelineChannel extends Channel {
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));
}