Skip to content

Commit

Permalink
B - Sender null til når det er feil med brukerssaksliste
Browse files Browse the repository at this point in the history
  • Loading branch information
dskarpas committed Jun 13, 2024
1 parent f97f173 commit a28307b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ class PensjonsinformasjonService(private val pensjonsinformasjonClient: Pensjons
companion object {
//hjelpe metode for å hente ut valgt V1SAK på vetak/SAK fnr og sakid benyttes
fun finnSak(sakId: String?, pendata: Pensjonsinformasjon): V1Sak? {
if (sakId.isNullOrBlank()) throw ManglendeSakIdException("Mangler sakId")
return FinnSak.finnSak(sakId, pendata)
return if (sakId.isNullOrBlank() || pendata.brukersSakerListe.brukersSakerListe == null) null
else FinnSak.finnSak(sakId, pendata)
}
}

Expand Down

0 comments on commit a28307b

Please sign in to comment.