summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index e732d5a..40a1e51 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -88,7 +88,7 @@ async fn run() -> Result<Option<tui::App>> {
// Kick off the rest of the search in the background
let app = task::spawn(async move { tui::App::from_search(search).await });
- if !Term::wait_for_char(' ')? {
+ if !Term::wait_for_char(' ').await? {
return Ok(None);
}