Skip to content

Commit

Permalink
Hvis avdøde er tom skal vi ikke kræsje for en hendelse (#5711)
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindsh authored Sep 6, 2024
1 parent 4946892 commit cb383ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ fun Grunnlag.sivilstand(saksrolle: Saksrolle) =
Saksrolle.AVDOED -> {
// first er helt ok her, siden vi kun er interessert når vi er i OMS land og skal da ha kun
// en avdød per behandling.
hentAvdoede().first().hentSivilstand()?.verdi
hentAvdoede().firstOrNull()?.hentSivilstand()?.verdi
}
else -> throw GrunnlagRolleException(
"Prøvde å finne sivilstand for $saksrolle, men det er ikke relevant for denne rollen",
Expand Down

0 comments on commit cb383ba

Please sign in to comment.