Fix: ローカルにフォロワー限定投稿が流れてくる (#5598)

This commit is contained in:
MeiMei 2019-11-24 08:31:57 +09:00 committed by syuilo
parent 1f86a6d329
commit b241967fb9

View file

@ -25,29 +25,19 @@ export default class extends Channel {
@autobind
private async onNote(note: PackedNote) {
if ((note.user as PackedUser).host !== null) return;
if (note.visibility === 'home') return;
if (note.visibility !== 'public') return;
if (['followers', 'specified'].includes(note.visibility)) {
note = await Notes.pack(note.id, this.user, {
// リプライなら再pack
if (note.replyId != null) {
note.reply = await Notes.pack(note.replyId, this.user, {
detail: true
});
}
// Renoteなら再pack
if (note.renoteId != null) {
note.renote = await Notes.pack(note.renoteId, this.user, {
detail: true
});
if (note.isHidden) {
return;
}
} else {
// リプライなら再pack
if (note.replyId != null) {
note.reply = await Notes.pack(note.replyId, this.user, {
detail: true
});
}
// Renoteなら再pack
if (note.renoteId != null) {
note.renote = await Notes.pack(note.renoteId, this.user, {
detail: true
});
}
}
// 流れてきたNoteがミュートしているユーザーが関わるものだったら無視する