We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cae4b46 commit 9bfc90aCopy full SHA for 9bfc90a
crates/ignore/src/walk.rs
@@ -1666,15 +1666,11 @@ impl<'s> Worker<'s> {
1666
}
1667
let should_skip_filesize =
1668
if self.max_filesize.is_some() && !dent.is_dir() {
1669
- if cfg!(windows) && is_online_only(&dent) {
1670
- false
1671
- } else {
1672
- skip_filesize(
1673
- self.max_filesize.unwrap(),
1674
- dent.path(),
1675
- &dent.metadata().ok(),
1676
- )
1677
- }
+ skip_filesize(
+ self.max_filesize.unwrap(),
+ dent.path(),
+ &dent.metadata().ok(),
+ )
1678
} else {
1679
false
1680
};
0 commit comments