Skip to content

Commit

Permalink
remove all non-ascii characters
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasDev committed Oct 26, 2023
1 parent fd766a2 commit de5eedb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class BlockingApplicationRunner(

val legekontorHerId = extractOrganisationHerNumberFromSender(fellesformat)?.id
val legekontorReshId = extractOrganisationRashNumberFromSender(fellesformat)?.id
val legekontorOrgName = msgHead.msgInfo.sender.organisation.organisationName
val legekontorOrgName = msgHead.msgInfo.sender.organisation.organisationName.replace("[^\\p{ASCII}]".toRegex(), "")

val partnerReferanse = receiverBlock.partnerReferanse

Expand Down

0 comments on commit de5eedb

Please sign in to comment.