post visibility day

This commit is contained in:
Emile 2021-07-06 04:15:51 +01:00
parent c268edfb61
commit 1f3ec2bf39
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ impl Sink<String> for MastodonPublisher {
fn start_send(self: Pin<&mut Self>, item: String) -> Result<(), Self::Error> {
let mut post = StatusBuilder::new(item);
post.visibility = Some(Visibility::Direct);
post.visibility = Some(Visibility::Public);
self.mastodon.new_status(post)?;
Ok(())
}