diff options
-rw-r--r-- | src/inputStream_http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inputStream_http.c b/src/inputStream_http.c index 46015553e..97be2775c 100644 --- a/src/inputStream_http.c +++ b/src/inputStream_http.c @@ -477,7 +477,7 @@ static int finishHTTPInit(InputStream * inStream) memset(request, 0, 2049); /* deal with ICY metadata later, for now its fucking up stuff! */ - snprintf(request, 2048, "GET %s HTTP/1.0\r\n" "Host: %s\r\n" + snprintf(request, 2048, "GET %s HTTP/1.1\r\n" "Host: %s\r\n" /*"Connection: close\r\n" */ "User-Agent: %s/%s\r\n" "Range: bytes=%ld-\r\n" |