Skip to content

Commit

Permalink
fix: classType of zero (titan) was ignored (#2056)
Browse files Browse the repository at this point in the history
  • Loading branch information
NigelBreslaw authored Jul 18, 2024
1 parent adeb940 commit 02e7eae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minifier/next_gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ function createMiniDefinition(jsonData: JsonData, uniqueKey: string): ProcessedD
}

const classType = jsonData[key].classType;
if (classType) {
if (classType !== undefined) {
item.c = classType;
}

Expand Down

0 comments on commit 02e7eae

Please sign in to comment.