fix patch error

This commit is contained in:
MystiPanda 2024-01-11 14:47:25 +08:00
parent bed128e8cf
commit 1c9bc00acc

View File

@ -123,7 +123,7 @@ index 6c207d9..d47dc33 100644
- if result == "\"\"" { - if result == "\"\"" {
- anyhow::bail!("main function should return object"); - anyhow::bail!("main function should return object");
- } - }
- return Ok(serde_json::from_str::<Mapping>(result.as_str())?); - Ok(serde_json::from_str::<Mapping>(result.as_str())?)
- }); - });
- -
- let mut out = outputs.lock().unwrap(); - let mut out = outputs.lock().unwrap();