libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit 9a7c1ecc9a31b624b635fd6d11fdd2b7fbbbe613
parent 322e52178c3bbdb9d21f8bcadf6a056502440b4a
Author: ms <ms@taler.net>
Date:   Mon, 22 Nov 2021 20:56:36 +0100

workaround missing URL-decoding at C's payto-parser

Diffstat:
M.idea/misc.xml | 2+-
Msandbox/src/main/kotlin/tech/libeufin/sandbox/Helpers.kt | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.idea/misc.xml b/.idea/misc.xml @@ -9,5 +9,5 @@ <component name="FrameworkDetectionExcludesConfiguration"> <file type="web" url="file://$PROJECT_DIR$" /> </component> - <component name="ProjectRootManager" version="2" languageLevel="JDK_11" project-jdk-name="11" project-jdk-type="JavaSDK" /> + <component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="true" project-jdk-name="11" project-jdk-type="JavaSDK" /> </project> \ No newline at end of file diff --git a/sandbox/src/main/kotlin/tech/libeufin/sandbox/Helpers.kt b/sandbox/src/main/kotlin/tech/libeufin/sandbox/Helpers.kt @@ -142,7 +142,7 @@ fun getPersonNameFromCustomer(ownerUsername: String): String { ).firstOrNull() ?: throw internalServerError( "Person name of '$ownerUsername' not found" ) - ownerCustomer.name ?: "Name not given" + ownerCustomer.name ?: "Unknown" } } }