Skip to content

Commit

Permalink
håndter fom == null i finnForeliggende() (#4052)
Browse files Browse the repository at this point in the history
### 💰 Hva skal gjøres, og hvorfor?
Får feil i finnForeliggende() hvis periodeFom == null

Setter til å returnere false siden det ikke skal finnes noen
foreliggende periode hvis fom == null

Signed-off-by: fredrikpf <[email protected]>
  • Loading branch information
fredrikpf authored Oct 9, 2023
1 parent 314f2c8 commit 09be29a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,9 @@ private fun List<MinimertVilkårResultat>.finnForeliggende(
): MinimertVilkårResultat? =
minimertVilkårResultat.let { vilkårResultat ->
this.find {
if (vilkårResultat.periodeFom == null) return@find false
it.periodeTom?.isEqual(
vilkårResultat.periodeFom?.minusDays(
vilkårResultat.periodeFom.minusDays(
1,
),
) == true && it.vilkårType == vilkårResultat.vilkårType
Expand Down

0 comments on commit 09be29a

Please sign in to comment.