Skip to content

Commit

Permalink
tar høyde for at sakid ikke finnes for søknader pga søknader i dev de…
Browse files Browse the repository at this point in the history
…r den mangler
  • Loading branch information
tiafiring committed Jan 31, 2025
1 parent 43f04e3 commit 99caaba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class BenkOversiktPostgresRepo(
id = id,
saksbehandler = null,
beslutter = null,
sakId = SakId.fromString(row.string("sak_id")),
sakId = row.stringOrNull("sak_id")?.let { SakId.fromString(it) },
)
}.asList,
)
Expand Down

0 comments on commit 99caaba

Please sign in to comment.