requested change.

This commit is contained in:
piuvas 2024-12-26 14:49:22 -03:00
parent 8f96b50b00
commit 2c742d6e82
No known key found for this signature in database
GPG key ID: 82743F52454C621D
5 changed files with 10 additions and 5 deletions

View file

@ -73,7 +73,8 @@ class BubbleTimelineChannel 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

@ -68,7 +68,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

@ -89,7 +89,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

@ -106,7 +106,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

@ -78,7 +78,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));
}