gnunet-svn
[Top][All Lists]
Advanced

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

[taler-exchange] branch master updated: -handle 204 better


From: gnunet
Subject: [taler-exchange] branch master updated: -handle 204 better
Date: Fri, 06 Aug 2021 14:47:58 +0200

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

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new f1a0ba62 -handle 204 better
f1a0ba62 is described below

commit f1a0ba628e32079eb09103ebace21c4390cd63b6
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Fri Aug 6 14:47:46 2021 +0200

    -handle 204 better
---
 src/bank-lib/taler-exchange-wire-gateway-client.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/bank-lib/taler-exchange-wire-gateway-client.c 
b/src/bank-lib/taler-exchange-wire-gateway-client.c
index 6159bca3..6d91d51b 100644
--- a/src/bank-lib/taler-exchange-wire-gateway-client.c
+++ b/src/bank-lib/taler-exchange-wire-gateway-client.c
@@ -180,7 +180,8 @@ credit_history_cb (void *cls,
   {
     if ( (MHD_HTTP_NO_CONTENT != http_status) ||
          (TALER_EC_NONE != ec) ||
-         (NULL == details) )
+         ( (MHD_HTTP_NO_CONTENT != http_status) &&
+           (NULL == details) ) )
     {
       if (0 == http_status)
       {
@@ -293,7 +294,8 @@ debit_history_cb (void *cls,
   {
     if ( (MHD_HTTP_NO_CONTENT != http_status) ||
          (TALER_EC_NONE != ec) ||
-         (NULL == details) )
+         ( (MHD_HTTP_NO_CONTENT != http_status) &&
+           (NULL == details) ) )
     {
       if (0 == http_status)
       {

-- 
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]