We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f6e291 commit 83c986cCopy full SHA for 83c986c
behovsmeldingsmodell/src/main/kotlin/no/nav/hjelpemidler/behovsmeldingsmodell/v1/Behovsmelding.kt
@@ -312,7 +312,7 @@ data class Levering(
312
lagVeiadresse(
313
adresse = checkNotNull(utleveringPostadresse),
314
postnummer = checkNotNull(utleveringPostnummer),
315
- poststed = checkNotNull(utleveringPoststed ?: "POSTSTED MANGLER"),
+ poststed = checkNotNull(if (utleveringPoststed.isNullOrBlank()) "POSTSTED MANGLER" else utleveringPoststed),
316
)
317
}
318
0 commit comments