mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-07 12:36:57 +00:00
copy changes to hybrid channel
This commit is contained in:
parent
a9d4112bef
commit
4484396660
1 changed files with 5 additions and 13 deletions
|
@ -67,34 +67,26 @@ class HybridTimelineChannel extends Channel {
|
||||||
(note.channelId != null && this.followingChannels.has(note.channelId))
|
(note.channelId != null && this.followingChannels.has(note.channelId))
|
||||||
)) return;
|
)) return;
|
||||||
|
|
||||||
if (note.visibility === 'followers') {
|
|
||||||
if (!isMe && !Object.hasOwn(this.following, note.userId)) return;
|
|
||||||
} else if (note.visibility === 'specified') {
|
|
||||||
if (!isMe && !note.visibleUserIds!.includes(this.user!.id)) return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.isNoteMutedOrBlocked(note)) return;
|
if (this.isNoteMutedOrBlocked(note)) return;
|
||||||
|
if (!this.isNoteVisibleToMe(note)) return;
|
||||||
|
|
||||||
if (note.reply) {
|
if (note.reply) {
|
||||||
const reply = note.reply;
|
const reply = note.reply;
|
||||||
if ((this.following[note.userId]?.withReplies ?? false) || this.withReplies) {
|
// 自分のフォローしていないユーザーの visibility: followers な投稿への返信は弾く
|
||||||
// 自分のフォローしていないユーザーの visibility: followers な投稿への返信は弾く
|
if (!this.isNoteVisibleToMe(reply)) return;
|
||||||
if (reply.visibility === 'followers' && !Object.hasOwn(this.following, reply.userId) && reply.userId !== this.user!.id) return;
|
if (!this.following[note.userId]?.withReplies && !this.withReplies) {
|
||||||
} else {
|
|
||||||
// 「チャンネル接続主への返信」でもなければ、「チャンネル接続主が行った返信」でもなければ、「投稿者の投稿者自身への返信」でもない場合
|
// 「チャンネル接続主への返信」でもなければ、「チャンネル接続主が行った返信」でもなければ、「投稿者の投稿者自身への返信」でもない場合
|
||||||
if (reply.userId !== this.user!.id && !isMe && reply.userId !== note.userId) return;
|
if (reply.userId !== this.user!.id && !isMe && reply.userId !== note.userId) return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (note.user.isSilenced && !this.following[note.userId] && note.userId !== this.user!.id) return;
|
|
||||||
|
|
||||||
// 純粋なリノート(引用リノートでないリノート)の場合
|
// 純粋なリノート(引用リノートでないリノート)の場合
|
||||||
if (isRenotePacked(note) && !isQuotePacked(note) && note.renote) {
|
if (isRenotePacked(note) && !isQuotePacked(note) && note.renote) {
|
||||||
if (!this.withRenotes) return;
|
if (!this.withRenotes) return;
|
||||||
if (note.renote.reply) {
|
if (note.renote.reply) {
|
||||||
const reply = note.renote.reply;
|
const reply = note.renote.reply;
|
||||||
// 自分のフォローしていないユーザーの visibility: followers な投稿への返信のリノートは弾く
|
// 自分のフォローしていないユーザーの visibility: followers な投稿への返信のリノートは弾く
|
||||||
if (reply.visibility === 'followers' && !Object.hasOwn(this.following, reply.userId) && reply.userId !== this.user!.id) return;
|
if (!this.isNoteVisibleToMe(reply)) return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue