Skip to content

Commit 6ef9188

Browse files
isaacroldanClaude Code
andcommitted
Refactor extension module spec matching
Co-authored-by: Claude Code <claude-code@anthropic.com>
1 parent f49bf4f commit 6ef9188

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/app/src/cli/services/context/breakdown-extensions.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,10 @@ function loadExtensionsIdentifiersBreakdown(
348348
developerPlatformClient: DeveloperPlatformClient,
349349
) {
350350
const extensionModules = activeAppVersion?.appModuleVersions.filter((ext) => {
351-
const spec = specs.find((spec) => spec.identifier === ext.specification?.identifier)
351+
const spec = specs.find(
352+
(spec) =>
353+
spec.identifier === ext.specification?.identifier || spec.externalIdentifier === ext.specification?.identifier,
354+
)
352355
return spec && !isAppConfigSpecification(spec)
353356
})
354357

0 commit comments

Comments
 (0)