summaryrefslogtreecommitdiff
path: root/src/files.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/files.rs')
-rw-r--r--src/files.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/files.rs b/src/files.rs
index e29406d..78947a4 100644
--- a/src/files.rs
+++ b/src/files.rs
@@ -119,7 +119,7 @@ pub async fn index_files_recursively(
&& handler.load(Ordering::SeqCst)
{
#[allow(unused_variables)]
- if let Err(error) = smol::block_on(async { handle_file(&path, conn) }).await {
+ if let Err(error) = smol::block_on(async { handle_file(&path, conn).await }) {
#[cfg(not(test))]
bar.println(format!("{}", FileError::new(&path, error)));
} else {