Update create.ts

This commit is contained in:
syuilo 2018-07-14 19:40:23 +09:00 committed by GitHub
parent 0d1ffb581f
commit f39adfdf87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -309,7 +309,7 @@ export default async (user: IUser, data: {
// Publish event to followers stream
stream(following.followerId, 'note', noteObj);
if (note.visibility != 'public') {
if (isRemoteUser(user) || note.visibility != 'public') {
publishHybridTimelineStream(following.followerId, noteObj);
}
} else {