chore: fix warnings

This commit is contained in:
Chris Midgley 2021-04-15 23:06:27 +01:00 committed by Mike Welsh
parent 8e6bba1525
commit 6c619495f4
1 changed files with 3 additions and 6 deletions

View File

@ -935,7 +935,7 @@ pub fn xml_send_and_load<'gc>(
if let Some(node) = this.as_xml_node() { if let Some(node) = this.as_xml_node() {
let url = url_val.coerce_to_string(activation)?; let url = url_val.coerce_to_string(activation)?;
spawn_xml_fetch(activation, this, target, &url, Some(node)); spawn_xml_fetch(activation, this, target, &url, Some(node))?;
} }
Ok(Value::Undefined) Ok(Value::Undefined)
} }
@ -951,9 +951,9 @@ pub fn xml_load<'gc>(
return Ok(false.into()); return Ok(false.into());
} }
if let Some(node) = this.as_xml_node() { if let Some(_node) = this.as_xml_node() {
let url = url_val.coerce_to_string(activation)?; let url = url_val.coerce_to_string(activation)?;
spawn_xml_fetch(activation, this, this, &url, None); spawn_xml_fetch(activation, this, this, &url, None)?;
Ok(true.into()) Ok(true.into())
} else { } else {
@ -1083,9 +1083,6 @@ fn spawn_xml_fetch<'gc>(
) -> Result<Value<'gc>, Error<'gc>> { ) -> Result<Value<'gc>, Error<'gc>> {
let request_options = if let Some(node) = send_object { let request_options = if let Some(node) = send_object {
// Send `node` as string // Send `node` as string
let content_type = this
.get("contentType", activation)?
.coerce_to_string(activation)?;
RequestOptions::post(Some(( RequestOptions::post(Some((
node.into_string(&mut is_as2_compatible).unwrap_or_default().into_bytes(), node.into_string(&mut is_as2_compatible).unwrap_or_default().into_bytes(),
this.get("contentType", activation)?.coerce_to_string(activation)?.to_string(), this.get("contentType", activation)?.coerce_to_string(activation)?.to_string(),