From e559417cab38ef7c5ca2fde2e43981e8dc8f765c Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 20 Jan 2019 23:55:32 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=BD=E3=83=BC=E3=82=B7=E3=83=A3=E3=83=AB?= =?UTF-8?q?=E3=82=BF=E3=82=A4=E3=83=A0=E3=83=A9=E3=82=A4=E3=83=B3=E3=81=AB?= =?UTF-8?q?=E3=83=95=E3=82=A9=E3=83=AD=E3=83=AF=E3=83=BC=E9=99=90=E5=AE=9A?= =?UTF-8?q?=E6=8A=95=E7=A8=BF=E3=81=8C=E5=90=AB=E3=81=BE=E3=82=8C=E3=81=A6?= =?UTF-8?q?=E3=81=84=E3=81=AA=E3=81=84=E5=95=8F=E9=A1=8C=E3=82=92=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + src/server/api/endpoints/notes/hybrid-timeline.ts | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c61c57581..35575f272 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ unreleased * `__`でも太字構文を使えるように(アルファベットのみ) * ハッシュタグ判定の強化 * ストーク機能の廃止 +* ソーシャルタイムラインにフォロワー限定投稿が含まれていない問題を修正 * ストリームで投稿が流れてきたとき、返信先が「この投稿は非公開です」となる問題を修正 * 関係のない返信がタイムラインに流れる問題を修正 * 常にメディアを閲覧注意として投稿するオプションが機能していなかった問題を修正 diff --git a/src/server/api/endpoints/notes/hybrid-timeline.ts b/src/server/api/endpoints/notes/hybrid-timeline.ts index bb10d5e04..406272681 100644 --- a/src/server/api/endpoints/notes/hybrid-timeline.ts +++ b/src/server/api/endpoints/notes/hybrid-timeline.ts @@ -141,9 +141,9 @@ export default define(meta, (ps, user) => new Promise(async (res, rej) => { })); const visibleQuery = user == null ? [{ - visibility: { $in: [ 'public', 'home' ] } + visibility: { $in: ['public', 'home'] } }] : [{ - visibility: { $in: [ 'public', 'home' ] } + visibility: { $in: ['public', 'home', 'followers'] } }, { // myself (for specified/private) userId: user._id