clippy, fmt

This commit is contained in:
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 comment_id = data.comment_id;
let form = CommentUpdateForm::builder() 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) .language_id(data.language_id)
.updated(Some(Some(naive_now()))) .updated(Some(Some(naive_now())))
.build(); .build();

View file

@ -218,7 +218,7 @@ impl Object for ApubPost {
PostInsertForm { PostInsertForm {
name, name,
url: url.map(Into::into), 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, creator_id: creator.id,
community_id: community.id, community_id: community.id,
removed: None, removed: None,