exchange

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

commit c314766a5a3a43bacf9732fd1b27c7e9d4d81563
parent a9ac0a8759909620d6995dba32942038ee9cd3c1
Author: Sebastian <sebasjm@gmail.com>
Date:   Wed, 21 Aug 2024 18:21:38 -0300

accountProperties is an object, not array

Diffstat:
Msrc/kyclogic/kyclogic_api.c | 2+-
Msrc/kyclogic/plugin_kyclogic_oauth2.c | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/kyclogic/kyclogic_api.c b/src/kyclogic/kyclogic_api.c @@ -3262,7 +3262,7 @@ handle_aml_output ( &apr->details.success.to_investigate), NULL), GNUNET_JSON_spec_mark_optional ( - GNUNET_JSON_spec_array_const ( + GNUNET_JSON_spec_object_const ( "properties", &apr->details.success.account_properties), NULL), diff --git a/src/kyclogic/plugin_kyclogic_oauth2.c b/src/kyclogic/plugin_kyclogic_oauth2.c @@ -1102,7 +1102,7 @@ parse_proof_success_reply (struct TALER_KYCLOGIC_ProofHandle *ph, if (NULL != ph->ec) return; GNUNET_log (GNUNET_ERROR_TYPE_ERROR, - "Failed to start KYCAID conversion helper `%s'\n", + "Failed to start OAUTH2 conversion helper `%s'\n", pd->conversion_binary); ph->status = TALER_KYCLOGIC_STATUS_INTERNAL_ERROR; ph->http_status = MHD_HTTP_INTERNAL_SERVER_ERROR;