Commit 6b34b9ee authored by Laurent Aimar's avatar Laurent Aimar

Do not unset b_seekable on 401 error.

parent 3829adf2
......@@ -1016,7 +1016,7 @@ static int Request( access_t *p_access, int64_t i_tell )
{
p_sys->b_seekable = VLC_FALSE;
}
if( p_sys->i_code != 206 )
if( p_sys->i_code != 206 && p_sys->i_code != 401 )
{
p_sys->b_seekable = VLC_FALSE;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment