diff options
Diffstat (limited to '')
-rw-r--r-- | src/inputStream_http.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/inputStream_http.c b/src/inputStream_http.c index dfa067257..0080792ad 100644 --- a/src/inputStream_http.c +++ b/src/inputStream_http.c @@ -407,6 +407,9 @@ static int getHTTPHello(InputStream * inStream) { /*data->prebuffer = 1;*/ + /*mark as unseekable till we actually implement seeking*/ + inStream->seekable = 0; + return 0; } |