mirror of
https://github.com/skot/ESP-Miner.git
synced 2025-04-03 09:28:02 +02:00
Fix api not handling errors properly
This commit is contained in:
parent
da2d2557e8
commit
953c9e1f02
@ -181,7 +181,7 @@ static esp_err_t rest_common_get_handler(httpd_req_t * req)
|
||||
httpd_resp_sendstr_chunk(req, NULL);
|
||||
/* Respond with 500 Internal Server Error */
|
||||
httpd_resp_send_err(req, HTTPD_500_INTERNAL_SERVER_ERROR, "Failed to send file");
|
||||
return ESP_FAIL;
|
||||
return ESP_OK;
|
||||
}
|
||||
}
|
||||
} while (read_bytes > 0);
|
||||
@ -193,7 +193,6 @@ static esp_err_t rest_common_get_handler(httpd_req_t * req)
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
|
||||
static esp_err_t handle_options_request(httpd_req_t * req)
|
||||
{
|
||||
// Set CORS headers for OPTIONS request
|
||||
@ -223,14 +222,14 @@ static esp_err_t PATCH_update_settings(httpd_req_t * req)
|
||||
if (total_len >= SCRATCH_BUFSIZE) {
|
||||
/* Respond with 500 Internal Server Error */
|
||||
httpd_resp_send_err(req, HTTPD_500_INTERNAL_SERVER_ERROR, "content too long");
|
||||
return ESP_FAIL;
|
||||
return ESP_OK;
|
||||
}
|
||||
while (cur_len < total_len) {
|
||||
received = httpd_req_recv(req, buf + cur_len, total_len);
|
||||
if (received <= 0) {
|
||||
/* Respond with 500 Internal Server Error */
|
||||
httpd_resp_send_err(req, HTTPD_500_INTERNAL_SERVER_ERROR, "Failed to post control value");
|
||||
return ESP_FAIL;
|
||||
return ESP_OK;
|
||||
}
|
||||
cur_len += received;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user