Allow to reply to public post with a direct message

This commit is contained in:
silverpill 2022-02-07 01:06:18 +00:00
parent 9330038141
commit d9f0095787

View file

@ -95,7 +95,7 @@ async fn create_status(
}, },
Err(other_error) => return Err(other_error.into()), Err(other_error) => return Err(other_error.into()),
}; };
if post_data.visibility != in_reply_to.visibility { if post_data.visibility != Visibility::Direct && post_data.visibility != in_reply_to.visibility {
return Err(ValidationError("post visibility doesn't match the parent").into()); return Err(ValidationError("post visibility doesn't match the parent").into());
}; };
if post_data.visibility != Visibility::Public { if post_data.visibility != Visibility::Public {