commit 063f171cf5f1203e32f53f052530a0f135c0c9ee
parent bc3c92eec5e6398eb4479eafaf50a1a9307e5510
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 13 Sep 2024 09:42:47 +0200
shopping URL is optional
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c
@@ -2306,16 +2306,15 @@ exchange_serve_process_config (const char *cfg_fn)
"invalid URL");
return GNUNET_SYSERR;
}
- if (GNUNET_SYSERR !=
+ if (GNUNET_OK !=
GNUNET_CONFIGURATION_get_value_string (TEH_cfg,
"exchange",
"SHOPPING_URL",
&TEH_shopping_url))
{
- GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
+ GNUNET_log_config_missing (GNUNET_ERROR_TYPE_WARNING,
"exchange",
"SHOPPING_URL");
- return GNUNET_SYSERR;
}
if ( (NULL != TEH_shopping_url) &&
(! TALER_is_web_url (TEH_shopping_url)) )