exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 0cb5ff1e04369d4dc5d3a0a8423ab557428fa08b
parent 4c31dde870c09b10c995391b685287f548ca3a70
Author: Christian Grothoff <grothoff@gnunet.org>
Date:   Mon,  5 May 2025 14:54:58 +0200

// null transforms false to NULL, do not do it on a boolean (fixes #9871)

Diffstat:
Msrc/kyclogic/taler-exchange-helper-measure-tops-3rdparty-check | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/kyclogic/taler-exchange-helper-measure-tops-3rdparty-check b/src/kyclogic/taler-exchange-helper-measure-tops-3rdparty-check @@ -89,7 +89,7 @@ fi INPUTS=$(jq '{"current_rules":.current_rules,"attributes":.attributes}') # Get entity type -CONTROL3P=$(echo "$INPUTS" | jq -r '.attributes.THIRD_PARTY_OWNERSHIP // null') +CONTROL3P=$(echo "$INPUTS" | jq -r '.attributes.THIRD_PARTY_OWNERSHIP') # Get current rules. CURRENT_RULES=$(echo "$INPUTS" | jq '.current_rules // null') # Get context values.