fix: collapse nested if per clippy

This commit is contained in:
2026-06-11 13:47:32 +02:00
parent 53b7f730cb
commit 57c720b22f

View File

@@ -10,15 +10,17 @@ const ENRICHMENT_TTL_DAYS: i64 = 90;
pub async fn execute(ctx: &AppContext, id: PersonId) -> Result<Option<Person>, DomainError> { pub async fn execute(ctx: &AppContext, id: PersonId) -> Result<Option<Person>, DomainError> {
let person = ctx.repos.person_query.get_by_id(&id).await?; let person = ctx.repos.person_query.get_by_id(&id).await?;
if let Some(ref p) = person { if let Some(ref p) = person
if should_enrich(p) { && should_enrich(p)
let _ = ctx.services.event_publisher.publish( {
&DomainEvent::PersonEnrichmentRequested { let _ = ctx
.services
.event_publisher
.publish(&DomainEvent::PersonEnrichmentRequested {
person_id: id, person_id: id,
external_person_id: p.external_id().value().to_string(), external_person_id: p.external_id().value().to_string(),
}, })
).await; .await;
}
} }
Ok(person) Ok(person)
} }