mirror of
https://github.com/nushell/nushell
synced 2025-01-14 06:04:09 +00:00
Fix unwrap in open
This commit is contained in:
parent
6e0cb6b809
commit
abfd417430
1 changed files with 6 additions and 3 deletions
|
@ -63,10 +63,13 @@ fn run(
|
|||
|
||||
let stream = async_stream_block! {
|
||||
|
||||
//FIXME: unwraps
|
||||
let result = fetch(&full_path, &path_str, path_span).await;
|
||||
|
||||
let (file_extension, contents, contents_tag, span_source) =
|
||||
fetch(&full_path, &path_str, path_span).await.unwrap();
|
||||
if let Err(e) = result {
|
||||
yield Err(e);
|
||||
return;
|
||||
}
|
||||
let (file_extension, contents, contents_tag, span_source) = result.unwrap();
|
||||
|
||||
let file_extension = if has_raw {
|
||||
None
|
||||
|
|
Loading…
Reference in a new issue