Skip to content

Commit

Permalink
Update parser.ts for rootage array
Browse files Browse the repository at this point in the history
  • Loading branch information
phileas0408 committed Nov 21, 2024
1 parent 0f12395 commit 77f6faa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export function SoftwareIDToVersion(
if (data.rev === REV_NORMAL) {
return "25";
}
} else if (data.ext === EXT_ROOTAGE) {
} else if (EXT_ROOTAGE.includes(data.ext)) {
if (data.rev === REV_OMNIMIX) {
return "26-omni";
} else if (data.rev === REV_NORMAL) {
Expand Down

0 comments on commit 77f6faa

Please sign in to comment.