fix return result of custom post handler

This commit is contained in:
Bogdan Pilyugin 2022-10-11 15:29:47 +02:00
parent 29b49efdab
commit aeb8bf1f37

View File

@ -89,7 +89,7 @@ static HTTP_IO_RESULT AfterPostHandler(httpd_req_t *req, const char *filename, c
// If not found target URL here, try to call custom code // If not found target URL here, try to call custom code
if (AfterPostHandlerCust != NULL) if (AfterPostHandlerCust != NULL)
AfterPostHandlerCust(req, filename, PostData); return AfterPostHandlerCust(req, filename, PostData);
return HTTP_IO_DONE; return HTTP_IO_DONE;
} }