Skip to content

Commit

Permalink
pick フォローしているユーザーからの自分の投稿への返信がタイムラインに含まれない問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
anatawa12 committed Oct 12, 2023
1 parent 73cd4bd commit 690d4a5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/backend/src/core/NoteCreateService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -876,8 +876,8 @@ export class NoteCreateService implements OnApplicationShutdown {
// 基本的にvisibleUserIdsには自身のidが含まれている前提であること
if (note.visibility === 'specified' && !note.visibleUserIds.some(v => v === following.followerId)) continue;

// 自分自身以外への返信
if (note.replyId && note.replyUserId !== note.userId) {
// 「自分自身への返信 or そのフォロワーへの返信」のどちらでもない場合
if (note.replyId && !(note.replyUserId === note.userId || note.replyUserId === following.followerId)) {
if (!this.config.nirila.withRepliesInHomeTL) continue;
}

Expand All @@ -894,8 +894,8 @@ export class NoteCreateService implements OnApplicationShutdown {
!note.visibleUserIds.some(v => v === userListMembership.userList!.userId)
) continue;

// 自分自身以外への返信
if (note.replyId && note.replyUserId !== note.userId) {
// 「自分自身への返信 or そのリストの作成者への返信」のどちらでもない場合
if (note.replyId && !(note.replyUserId === note.userId || note.replyUserId === userListMembership.userList!.userId)) {
if (!this.config.nirila.withRepliesInHomeTL) continue;
}

Expand Down

0 comments on commit 690d4a5

Please sign in to comment.