mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-22 06:36:14 +00:00
parent
a39c19c9db
commit
973f39601c
|
@ -37,6 +37,12 @@ pub async fn remove_comment(
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
|
// Don't allow removing or restoring comment which was deleted by user, as it would reveal
|
||||||
|
// the comment text in mod log.
|
||||||
|
if orig_comment.comment.deleted {
|
||||||
|
return Err(LemmyErrorType::CouldntUpdateComment.into());
|
||||||
|
}
|
||||||
|
|
||||||
// Do the remove
|
// Do the remove
|
||||||
let removed = data.removed;
|
let removed = data.removed;
|
||||||
let updated_comment = Comment::update(
|
let updated_comment = Comment::update(
|
||||||
|
|
Loading…
Reference in a new issue