summaryrefslogtreecommitdiff
path: root/src/services/note
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-07-11 14:33:03 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-07-11 14:33:03 +0900
commitc41ccf7821c1729c1fdde09d4f62f5d6ba4f79bc (patch)
tree9f897627aa19d6576002a4dc0794066427e44f24 /src/services/note
parentFix bug (diff)
downloadsharkey-c41ccf7821c1729c1fdde09d4f62f5d6ba4f79bc.tar.gz
sharkey-c41ccf7821c1729c1fdde09d4f62f5d6ba4f79bc.tar.bz2
sharkey-c41ccf7821c1729c1fdde09d4f62f5d6ba4f79bc.zip
Fix bug
Diffstat (limited to 'src/services/note')
-rw-r--r--src/services/note/create.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/note/create.ts b/src/services/note/create.ts
index cc7474292f..d29b628119 100644
--- a/src/services/note/create.ts
+++ b/src/services/note/create.ts
@@ -269,7 +269,7 @@ export default async (user: IUser, data: {
// Publish note to local and hybrid timeline stream
if (note.visibility != 'home') {
publishLocalTimelineStream(noteObj);
- publishHybridTimelineStream(noteObj);
+ publishHybridTimelineStream(null, noteObj);
}
}
}