gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libeufin] branch master updated: workaround missing URL-decoding at C's


From: gnunet
Subject: [libeufin] branch master updated: workaround missing URL-decoding at C's payto-parser
Date: Mon, 22 Nov 2021 20:57:31 +0100

This is an automated email from the git hooks/post-receive script.

ms pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new 9a7c1ecc workaround missing URL-decoding at C's payto-parser
9a7c1ecc is described below

commit 9a7c1ecc9a31b624b635fd6d11fdd2b7fbbbe613
Author: ms <ms@taler.net>
AuthorDate: Mon Nov 22 20:56:36 2021 +0100

    workaround missing URL-decoding at C's payto-parser
---
 .idea/misc.xml                                           | 2 +-
 sandbox/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
index 30588179..fe327906 100644
--- 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
index 29d93e4f..2bce4079 100644
--- 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"
         }
     }
 }

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]