We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48a9fca commit 11fa65aCopy full SHA for 11fa65a
mp3rgui/src/app.rs
@@ -94,6 +94,12 @@ impl Mp3rgainApp {
94
}
95
96
fn is_supported_format(path: &PathBuf) -> bool {
97
+ // Skip macOS resource fork files (._*)
98
+ if let Some(name) = path.file_name().and_then(|n| n.to_str()) {
99
+ if name.starts_with("._") {
100
+ return false;
101
+ }
102
103
path.extension().map_or(false, |ext| {
104
ext.eq_ignore_ascii_case("mp3")
105
|| ext.eq_ignore_ascii_case("m4a")
0 commit comments