Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 104b12d9 authored by Andreas Huber's avatar Andreas Huber
Browse files

Increase buffer allocated to receive HTTP response, YouTube is rather verbose...

Yes, I know, fixed buffers are bad.
parent 53f2b2ae
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -174,7 +174,7 @@ status_t HTTPStream::receive_header(int *http_status) {
    *http_status = -1;
    mHeaders.clear();

    char line[256];
    char line[1024];
    status_t err = receive_line(line, sizeof(line));
    if (err != OK) {
        return err;