File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
contrib/notebook/browser/services
services/extensions/common Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -116,13 +116,14 @@ export class NotebookProviderInfoStore extends Disposable {
116116 if ( ! existing . extension && extension . description . isBuiltin && builtins . find ( builtin => builtin . id === notebookContribution . type ) ) {
117117 // we are registering an extension which is using the same view type which is already cached
118118 builtinProvidersFromCache . get ( notebookContribution . type ) ?. dispose ( ) ;
119- implicitActivationEvents . push ( `onNotebookSerializer:${ notebookContribution . type } ` ) ;
120119 } else {
121120 extension . collector . error ( `Notebook type '${ notebookContribution . type } ' already used` ) ;
122121 continue ;
123122 }
124123 }
125124
125+ implicitActivationEvents . push ( `onNotebookSerializer:${ notebookContribution . type } ` ) ;
126+
126127 this . add ( new NotebookProviderInfo ( {
127128 extension : extension . description . identifier ,
128129 id : notebookContribution . type ,
Original file line number Diff line number Diff line change @@ -1226,6 +1226,7 @@ export abstract class AbstractExtensionService extends Disposable implements IEx
12261226 }
12271227 this . _combineImplicitExtensionActivationEvents ( ) ;
12281228 perf . mark ( 'code/didHandleExtensionPoints' ) ;
1229+ this . _registry . set ( availableExtensions ) ;
12291230 }
12301231
12311232 private _combineImplicitExtensionActivationEvents ( ) {
You can’t perform that action at this time.
0 commit comments