1
0

requested change.

This commit is contained in:
piuvas
2024-12-26 14:49:22 -03:00
parent 8f96b50b00
commit 2c742d6e82
5 changed files with 10 additions and 5 deletions
@@ -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));
}
@@ -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));
}
@@ -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));
}
@@ -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));
}
@@ -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));
}