mirror of
https://github.com/nushell/nushell.git
synced 2025-01-12 01:09:05 +01:00
Merge pull request #565 from jonathandturner/fix_open_panic
Fix unwrap in open
This commit is contained in:
commit
90f190e54a
@ -63,10 +63,13 @@ fn run(
|
|||||||
|
|
||||||
let stream = async_stream_block! {
|
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) =
|
if let Err(e) = result {
|
||||||
fetch(&full_path, &path_str, path_span).await.unwrap();
|
yield Err(e);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let (file_extension, contents, contents_tag, span_source) = result.unwrap();
|
||||||
|
|
||||||
let file_extension = if has_raw {
|
let file_extension = if has_raw {
|
||||||
None
|
None
|
||||||
|
Loading…
Reference in New Issue
Block a user