ソーシャルタイムラインにフォロワー限定投稿が含まれていない問題を修正

This commit is contained in:
syuilo 2019-01-20 23:55:32 +09:00
parent f793478709
commit e559417cab
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
2 changed files with 3 additions and 2 deletions

View file

@ -13,6 +13,7 @@ unreleased
* `__`でも太字構文を使えるように(アルファベットのみ)
* ハッシュタグ判定の強化
* ストーク機能の廃止
* ソーシャルタイムラインにフォロワー限定投稿が含まれていない問題を修正
* ストリームで投稿が流れてきたとき、返信先が「この投稿は非公開です」となる問題を修正
* 関係のない返信がタイムラインに流れる問題を修正
* 常にメディアを閲覧注意として投稿するオプションが機能していなかった問題を修正

View file

@ -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