aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-hsrv.c
diff options
context:
space:
mode:
authorFulup Ar Foll <fulup@iot.bzh>2016-05-13 19:10:32 +0200
committerFulup Ar Foll <fulup@iot.bzh>2016-05-13 19:10:32 +0200
commit6f058dbce7f7f96c458820534f774b9b2b358607 (patch)
tree7ea56e7d85ffaea4c3482d593bad5d117ee43e20 /src/afb-hsrv.c
parentb5cf93aed93e7f331eb645c8afe5317fb67ee50e (diff)
Fixed Sample POST/JSON
Diffstat (limited to 'src/afb-hsrv.c')
-rw-r--r--src/afb-hsrv.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/afb-hsrv.c b/src/afb-hsrv.c
index d2356484..5b0153c2 100644
--- a/src/afb-hsrv.c
+++ b/src/afb-hsrv.c
@@ -156,7 +156,9 @@ static int access_handler(
if (hreq->postform == NULL)
afb_hreq_reply_error(hreq, MHD_HTTP_INTERNAL_SERVER_ERROR);
return MHD_YES;
- } else if (strcasestr(type, JSON_CONTENT) == NULL) {
+ } else if (strcasestr(type, JSON_CONTENT) != NULL) {
+ return MHD_YES;
+ } else {
afb_hreq_reply_error(hreq, MHD_HTTP_UNSUPPORTED_MEDIA_TYPE);
return MHD_YES;
}