Skip to content

Commit

Permalink
register instantiation service child for disposal
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Jul 12, 2024
1 parent fabbf0c commit 0a6db78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/workbench/api/common/extHostExtensionService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,10 @@ export abstract class AbstractExtHostExtensionService extends Disposable impleme
this._secretState = new ExtHostSecretState(this._extHostContext);
this._storagePath = storagePath;

this._instaService = instaService.createChild(new ServiceCollection(
this._instaService = this._store.add(instaService.createChild(new ServiceCollection(
[IExtHostStorage, this._storage],
[IExtHostSecretState, this._secretState]
));
)));

this._activator = this._register(new ExtensionsActivator(
this._myRegistry,
Expand Down

0 comments on commit 0a6db78

Please sign in to comment.