esp_http_client: Fix header sent event bug

This commit is contained in:
Jitin George 2019-03-14 11:20:02 +05:30 committed by bot
parent 19fd2b3d93
commit 105e3302a7

View file

@ -1083,6 +1083,7 @@ static esp_err_t esp_http_client_request_send(esp_http_client_handle_t client, i
client->data_written_index = 0;
client->data_write_left = client->post_len;
http_dispatch_event(client, HTTP_EVENT_HEADER_SENT, NULL, 0);
client->state = HTTP_STATE_REQ_COMPLETE_HEADER;
return ESP_OK;
}