diff options
author | Marcello Stanisci <stanisci.m@gmail.com> | 2018-07-26 14:55:59 +0200 |
---|---|---|
committer | Marcello Stanisci <stanisci.m@gmail.com> | 2018-07-26 14:55:59 +0200 |
commit | c993c0d650ae8fe603f38e6993f6f0966611f6dc (patch) | |
tree | a7092ceac8aea63707ce5aa84b62af4e924276ed /src/lib/merchant_api_track_transfer.c | |
parent | ae677d18082a1f817ead046209f2a1518185897b (diff) |
Addressing #5383 led to discover that..
.. merchant-lib used to give a hard error
for a 424 response on /track/transfer; fixed
by just passing the control to the caller.
Diffstat (limited to 'src/lib/merchant_api_track_transfer.c')
-rw-r--r-- | src/lib/merchant_api_track_transfer.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/merchant_api_track_transfer.c b/src/lib/merchant_api_track_transfer.c index 7c78532f..5766a57c 100644 --- a/src/lib/merchant_api_track_transfer.c +++ b/src/lib/merchant_api_track_transfer.c @@ -179,6 +179,9 @@ handle_track_transfer_finished (void *cls, GNUNET_break_op (0); response_code = 0; break; + case MHD_HTTP_FAILED_DEPENDENCY: + /* Not a reason to break execution. */ + break; case MHD_HTTP_NOT_FOUND: /* Nothing really to verify, this should never happen, we should pass the JSON reply to the application */ |