Skip to content

Commit

Permalink
feat: ignore .nfo files in game lists (PICO-8 metadata) (#83)
Browse files Browse the repository at this point in the history
Resolves #79
  • Loading branch information
Pobega authored Sep 12, 2024
1 parent 67d1208 commit a2e7c06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/allium-launcher/src/entry/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl Entry {
}

// Exclude DB
const EXCLUDE_EXTENSIONS: [&str; 2] = ["db", "sbi"];
const EXCLUDE_EXTENSIONS: [&str; 3] = ["db", "sbi", "nfo"];
if EXCLUDE_EXTENSIONS.contains(&extension.as_str()) {
return Ok(None);
}
Expand Down

0 comments on commit a2e7c06

Please sign in to comment.