Skip to content

Commit

Permalink
fix(app-builder): fix error on update with missing composer source field
Browse files Browse the repository at this point in the history
  • Loading branch information
EdieLemoine committed Jun 28, 2024
1 parent 7c63a55 commit 0334013
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const getComposerPackageVersion = async (context: UpgradeSubContext): Pro
return [
{
name: json.name,
repository: parseGitHubUrl(json.source.url),
repository: parseGitHubUrl(json.source?.url ?? ''),
version: json.versions[0],
},
] satisfies ParsedEntry[];
Expand Down

0 comments on commit 0334013

Please sign in to comment.