mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-01-25 00:25:25 +01:00
requested change.
This commit is contained in:
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));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue