Missing newline in WebInputStream::PImpl::createRequestHeader

Hi,

When CURL is not enabled, the code in juce_linux_Networking.cpp for http GET does not work , I’m getting “HTTP Error 408 Request timeout” . I’m using the URL class with no specific header or whatever. Replacing line 482:

header << "\r\n";

with

header << "\r\n\r\n";

Fixes the issue.

So, what about this ? it seems like a pretty straighforward bug with a trivial fix.

Sorry, hadn’t seen your post. Yep, cheers for that, we’ll update it!