We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e93a36 commit bc9108eCopy full SHA for bc9108e
2 files changed
src/adapters/sqlite.rs
@@ -122,6 +122,10 @@ impl WritingFileAdapter for SqliteAdapter {
122
_detection_reason: &FileMatcher,
123
oup: Pin<Box<dyn AsyncWrite + Send>>,
124
) -> Result<()> {
125
+ if ai.filepath_hint.file_name().and_then(|e| e.to_str()) == Some("Thumbs.db") {
126
+ // skip windows thumbnail cache
127
+ return Ok(());
128
+ }
129
let oup_sync = SyncIoBridge::new(oup);
130
tokio::task::spawn_blocking(|| synchronous_dump_sqlite(ai, oup_sync))
131
.await?
src/config.rs
@@ -38,7 +38,7 @@ impl ToString for MaxArchiveRecursion {
38
}
39
impl Default for MaxArchiveRecursion {
40
fn default() -> Self {
41
- MaxArchiveRecursion(4)
+ MaxArchiveRecursion(5)
42
43
44
0 commit comments