Skip to content

Commit

Permalink
Fixing updated form fields. Fixes #2724 (#2725)
Browse files Browse the repository at this point in the history
* Fixing updated form fields. Fixes #2724

* Fix import.
  • Loading branch information
dessalines authored Feb 14, 2023
1 parent 9d7009c commit 956d0aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions crates/api_crud/src/comment/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ use lemmy_db_schema::{
local_site::LocalSite,
},
traits::Crud,
utils::naive_now,
};
use lemmy_db_views::structs::CommentView;
use lemmy_utils::{
Expand Down Expand Up @@ -92,6 +93,7 @@ impl PerformCrud for EditComment {
.content(content_slurs_removed)
.distinguished(data.distinguished)
.language_id(data.language_id)
.updated(Some(Some(naive_now())))
.build();
let updated_comment = Comment::update(context.pool(), comment_id, &form)
.await
Expand Down
3 changes: 2 additions & 1 deletion crates/api_crud/src/community/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use lemmy_db_schema::{
local_site::LocalSite,
},
traits::Crud,
utils::{diesel_option_overwrite, diesel_option_overwrite_to_url},
utils::{diesel_option_overwrite, diesel_option_overwrite_to_url, naive_now},
};
use lemmy_db_views_actor::structs::CommunityModeratorView;
use lemmy_utils::{error::LemmyError, utils::check_slurs_opt, ConnectionId};
Expand Down Expand Up @@ -70,6 +70,7 @@ impl PerformCrud for EditCommunity {
.banner(banner)
.nsfw(data.nsfw)
.posting_restricted_to_mods(data.posting_restricted_to_mods)
.updated(Some(Some(naive_now())))
.build();

let community_id = data.community_id;
Expand Down
3 changes: 2 additions & 1 deletion crates/api_crud/src/post/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use lemmy_db_schema::{
post::{Post, PostUpdateForm},
},
traits::Crud,
utils::diesel_option_overwrite,
utils::{diesel_option_overwrite, naive_now},
};
use lemmy_utils::{
error::LemmyError,
Expand Down Expand Up @@ -101,6 +101,7 @@ impl PerformCrud for EditPost {
.embed_video_url(embed_video_url)
.language_id(data.language_id)
.thumbnail_url(Some(thumbnail_url))
.updated(Some(Some(naive_now())))
.build();

let post_id = data.post_id;
Expand Down

0 comments on commit 956d0aa

Please sign in to comment.