Commit 1485374f authored by Laurent Aimar's avatar Laurent Aimar

Backport [20328] (Do not forbid seeking on 401 error.)

parent 752251a4
......@@ -1022,7 +1022,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