mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-04-05 18:09:45 +00:00
Fix error type returned by verify_person (#5519)
This commit is contained in:
parent
4c3a52e94c
commit
3324003049
1 changed files with 2 additions and 4 deletions
|
@ -29,7 +29,6 @@ use activitypub_federation::{
|
|||
kinds::{activity::AnnounceType, public},
|
||||
traits::{ActivityHandler, Actor},
|
||||
};
|
||||
use anyhow::anyhow;
|
||||
use following::send_accept_or_reject_follow;
|
||||
use lemmy_api_common::{
|
||||
context::LemmyContext,
|
||||
|
@ -44,7 +43,7 @@ use lemmy_db_schema::{
|
|||
CommunityVisibility,
|
||||
};
|
||||
use lemmy_db_views::structs::{CommunityPersonBanView, CommunityView};
|
||||
use lemmy_utils::error::{FederationError, LemmyError, LemmyErrorExt, LemmyErrorType, LemmyResult};
|
||||
use lemmy_utils::error::{FederationError, LemmyError, LemmyResult};
|
||||
use serde::Serialize;
|
||||
use tracing::info;
|
||||
use url::{ParseError, Url};
|
||||
|
@ -65,8 +64,7 @@ async fn verify_person(
|
|||
) -> LemmyResult<()> {
|
||||
let person = person_id.dereference(context).await?;
|
||||
if person.banned {
|
||||
Err(anyhow!("Person {} is banned", person_id))
|
||||
.with_lemmy_type(LemmyErrorType::CouldntUpdateComment)
|
||||
Err(FederationError::PersonIsBannedFromSite(person.ap_id.to_string()).into())
|
||||
} else {
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue