This commit is contained in:
syuilo 2018-04-29 09:29:39 +09:00
parent 2f2a945905
commit 72c1352acf
1 changed files with 4 additions and 2 deletions

View File

@ -123,7 +123,7 @@ export default async (user: IUser, data: {
if (note.channelId == null) {
if (!silent) {
if (isLocalUser(user)) {
if (note.visibility == 'private') {
if (note.visibility == 'private' || note.visibility == 'followers' || note.visibility == 'specified') {
// Publish event to myself's stream
stream(note.userId, 'note', await pack(note, user, {
detail: true
@ -133,9 +133,11 @@ export default async (user: IUser, data: {
stream(note.userId, 'note', noteObj);
// Publish note to local timeline stream
if (note.visibility != 'home') {
publishLocalTimelineStream(noteObj);
}
}
}
// Publish note to global timeline stream
publishGlobalTimelineStream(noteObj);