clippy, fmt

pull/3009/head
dullbananas 2023-06-12 03:50:03 +00:00
parent 3883fb5671
commit fc5ef73a98
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ impl PerformCrud for EditComment {
let comment_id = data.comment_id;
let form = CommentUpdateForm::builder()
.content(content_slurs_removed.map(|s| s.into_owned()))
.content(content_slurs_removed.map(std::borrow::Cow::into_owned))
.language_id(data.language_id)
.updated(Some(Some(naive_now())))
.build();

View File

@ -218,7 +218,7 @@ impl Object for ApubPost {
PostInsertForm {
name,
url: url.map(Into::into),
body: body_slurs_removed.map(|s| s.into_owned()),
body: body_slurs_removed.map(std::borrow::Cow::into_owned),
creator_id: creator.id,
community_id: community.id,
removed: None,