From c99e864dbc2c64e940bbe3f63d9688e15553e4b8 Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Sat, 14 Jul 2018 19:49:21 +0900 Subject: :sparkles: --- src/services/note/create.ts | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'src/services/note') diff --git a/src/services/note/create.ts b/src/services/note/create.ts index 015227d419..aec0e78964 100644 --- a/src/services/note/create.ts +++ b/src/services/note/create.ts @@ -308,7 +308,7 @@ export default async (user: IUser, data: { // Publish event to followers stream stream(following.followerId, 'note', noteObj); - + if (isRemoteUser(user) || note.visibility != 'public') { publishHybridTimelineStream(following.followerId, noteObj); } @@ -363,14 +363,14 @@ export default async (user: IUser, data: { // 削除されたドキュメントは除く deletedAt: { $exists: false } }, { - fields: { - userId: true - } - }).then(watchers => { - watchers.forEach(watcher => { - nm.push(watcher.userId, 'reply'); + fields: { + userId: true + } + }).then(watchers => { + watchers.forEach(watcher => { + nm.push(watcher.userId, 'reply'); + }); }); - }); // この投稿をWatchする if (isLocalUser(user) && user.settings.autoWatch !== false) { @@ -392,14 +392,14 @@ export default async (user: IUser, data: { noteId: data.renote._id, userId: { $ne: user._id } }, { - fields: { - userId: true - } - }).then(watchers => { - watchers.forEach(watcher => { - nm.push(watcher.userId, type); + fields: { + userId: true + } + }).then(watchers => { + watchers.forEach(watcher => { + nm.push(watcher.userId, type); + }); }); - }); // この投稿をWatchする if (isLocalUser(user) && user.settings.autoWatch !== false) { -- cgit v1.2.3-freya