Skip to content

Commit

Permalink
Fix GeneratedBuildListDataManager validate method
Browse files Browse the repository at this point in the history
  • Loading branch information
CordonZeus22 committed Nov 24, 2024
1 parent 9ce7495 commit e3ac376
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class GeneratedBuildListDataManager extends DataManager<
} else {
builds = builds
.map((build) => {
if (typeof build !== 'object' || obj === null) return undefined
if (typeof build !== 'object' || build === null) return undefined
const { artifactIds: artifactIdsRaw } = build as GeneratedBuild
if (typeof artifactIdsRaw !== 'object' || artifactIdsRaw === null)
return undefined
Expand Down

0 comments on commit e3ac376

Please sign in to comment.