fix: dont stream hidden posts
This commit is contained in:
parent
0b59937e9e
commit
0c742929a5
|
@ -450,7 +450,9 @@ export default async (
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
publishNotesStream(note);
|
if (!dontFederateInitially) {
|
||||||
|
publishNotesStream(note);
|
||||||
|
}
|
||||||
if (note.replyId != null) {
|
if (note.replyId != null) {
|
||||||
// Only provide the reply note id here as the recipient may not be authorized to see the note.
|
// Only provide the reply note id here as the recipient may not be authorized to see the note.
|
||||||
publishNoteStream(note.replyId, "replied", {
|
publishNoteStream(note.replyId, "replied", {
|
||||||
|
|
Loading…
Reference in New Issue