Allow to reply to public post with a direct message
This commit is contained in:
parent
9330038141
commit
d9f0095787
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue