mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-02-20 22:56:20 +00:00
reqwest: Update for API changes
This commit is contained in:
parent
d44a1a4245
commit
be72fefb18
1 changed files with 6 additions and 3 deletions
|
@ -218,7 +218,8 @@ impl Harness {
|
|||
panic!(
|
||||
"Got error: {} ({})",
|
||||
err.error(),
|
||||
err.debug().unwrap_or_else(|| String::from("None"))
|
||||
err.debug()
|
||||
.unwrap_or_else(|| glib::GString::from("UNKNOWN"))
|
||||
);
|
||||
}
|
||||
_ => (),
|
||||
|
@ -262,7 +263,8 @@ impl Harness {
|
|||
panic!(
|
||||
"Got error: {} ({})",
|
||||
err.error(),
|
||||
err.debug().unwrap_or_else(|| String::from("None"))
|
||||
err.debug()
|
||||
.unwrap_or_else(|| glib::GString::from("UNKNOWN"))
|
||||
);
|
||||
}
|
||||
_ => (),
|
||||
|
@ -302,7 +304,8 @@ impl Harness {
|
|||
panic!(
|
||||
"Got error: {} ({})",
|
||||
err.error(),
|
||||
err.debug().unwrap_or_else(|| String::from("None"))
|
||||
err.debug()
|
||||
.unwrap_or_else(|| glib::GString::from("UNKNOWN"))
|
||||
);
|
||||
}
|
||||
_ => (),
|
||||
|
|
Loading…
Reference in a new issue