summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJeff Zhao <jeff.no.zhao@gmail.com>2021-06-09 15:04:10 -0400
committerJeff Zhao <jeff.no.zhao@gmail.com>2021-06-09 15:04:10 -0400
commit1ab4df23cea3abe1940619d36386eb781c9ba5ea (patch)
tree8044f911e9586011645bf1d8ea2b716fbae73b85 /src
parent8613e3164e3c752e070b7d21da0b904291987a67 (diff)
fix issue where joshuto does not start
- this occurs if current working directory has a directory that cannot be viewed due to permissions or other errors
Diffstat (limited to 'src')
-rw-r--r--src/run.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/run.rs b/src/run.rs
index 42864be..fa02d3e 100644
--- a/src/run.rs
+++ b/src/run.rs
@@ -23,7 +23,7 @@ pub fn run(
context.tab_context_mut().push_tab(tab);
// trigger a preview of child
- LoadChild::load_child(context)?;
+ let _ = LoadChild::load_child(context);
}
while !context.exit {