Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Feb 23, 2024
1 parent 0d7ce79 commit f02924b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
Binary file modified lib/virtual_adapter.debug.wasm
Binary file not shown.
Binary file modified lib/virtual_adapter.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion virtual-adapter/src/io.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1378,7 +1378,7 @@ impl GuestResponseOutparam for ResponseOutparam {
let param = Resource::into_inner(param).0;
match response {
Ok(res) => http_types::ResponseOutparam::set(param, Ok(Resource::into_inner(res).0)),
Err(err) => http_types::ResponseOutparam::set(param, Err(&http_err_map(err))),
Err(err) => http_types::ResponseOutparam::set(param, Err(http_err_map(err))),
}
}
}
Expand Down

0 comments on commit f02924b

Please sign in to comment.