mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-25 14:51:31 -07:00
Fix bug
This commit is contained in:
parent
77546682b2
commit
414439edfc
1 changed files with 5 additions and 2 deletions
|
@ -150,8 +150,11 @@ export default async (user: IUser, data: {
|
|||
const follower = following._follower;
|
||||
|
||||
if (isLocalUser(follower)) {
|
||||
// この投稿が返信かつstalkフォローでないならスキップ
|
||||
if (note.replyId && !following.stalk) return;
|
||||
// ストーキングしていない場合
|
||||
if (!following.stalk) {
|
||||
// この投稿が返信ならスキップ
|
||||
if (note.replyId && !note._reply.userId.equals(following.followerId) && !note._reply.userId.equals(note.userId)) return;
|
||||
}
|
||||
|
||||
// Publish event to followers stream
|
||||
stream(following.followerId, 'note', noteObj);
|
||||
|
|
Loading…
Reference in a new issue