diff options
Diffstat (limited to 'src/files.rs')
| -rw-r--r-- | src/files.rs | 2 |
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 { |
