From 917627c464c6343685123206cbf87cff686678a4 Mon Sep 17 00:00:00 2001 From: Ajeet D'Souza <98ajeet@gmail.com> Date: Sun, 10 Aug 2025 13:21:53 +0530 Subject: [PATCH] typo --- src/db/stream.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/stream.rs b/src/db/stream.rs index 983ab5e..4b06193 100644 --- a/src/db/stream.rs +++ b/src/db/stream.rs @@ -54,7 +54,7 @@ impl<'a> Stream<'a> { } fn filter_by_base_dir(&self, path: &str) -> bool { - match path { + match &self.options.base_dir { Some(base_dir) => Path::new(path).starts_with(base_dir), None => true, }