mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-27 05:51:01 +00:00
reqwesthttpsrc: Map error response codes to the correct error messages
This commit is contained in:
parent
542f68dd07
commit
367ca9b996
1 changed files with 2 additions and 2 deletions
|
@ -210,7 +210,7 @@ impl ReqwestHttpSrc {
|
||||||
{
|
{
|
||||||
range_start
|
range_start
|
||||||
} else {
|
} else {
|
||||||
start
|
0
|
||||||
};
|
};
|
||||||
|
|
||||||
if position != start {
|
if position != start {
|
||||||
|
@ -228,7 +228,7 @@ impl ReqwestHttpSrc {
|
||||||
uri,
|
uri,
|
||||||
body: Some(body),
|
body: Some(body),
|
||||||
seekable,
|
seekable,
|
||||||
position: 0,
|
position: position,
|
||||||
size,
|
size,
|
||||||
start,
|
start,
|
||||||
stop,
|
stop,
|
||||||
|
|
Loading…
Reference in a new issue