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