Skip to content

Commit

Permalink
Ensure extensions are properly deregistered from walkthrough (#155770)
Browse files Browse the repository at this point in the history
Ensure extensions are properly deregistered
  • Loading branch information
lramos15 committed Jul 20, 2022
1 parent 3f454e9 commit eaeb3a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ export class WalkthroughsService extends Disposable implements IWalkthroughsServ
}

extension.contributes?.walkthroughs?.forEach(section => {
const categoryID = extension.identifier.value + '#walkthrough#' + section.id;
const categoryID = extension.identifier.value + '#' + section.id;
section.steps.forEach(step => {
const fullyQualifiedID = extension.identifier.value + '#' + section.id + '#' + step.id;
this.steps.delete(fullyQualifiedID);
Expand Down

0 comments on commit eaeb3a7

Please sign in to comment.