Fix invalid HTTP header (#63)

Looks fine :)
This commit is contained in:
pembem22 2024-03-17 21:18:36 +02:00 committed by GitHub
parent 453762a93b
commit 43a13f6e34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,7 +25,7 @@ esp_err_t StreamHelpers::stream(httpd_req_t *req)
if (res != ESP_OK)
return res;
httpd_resp_set_hdr(req, "Access-Control-Allow-Origin; Content-Type: multipart/x-mixed-replace; boundary=123456789000000000000987654321\r\n", "*");
httpd_resp_set_hdr(req, "Access-Control-Allow-Origin", "*");
httpd_resp_set_hdr(req, "X-Framerate", "60");
while (true)