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 {
116
116
if ( ! existing . extension && extension . description . isBuiltin && builtins . find ( builtin => builtin . id === notebookContribution . type ) ) {
117
117
// we are registering an extension which is using the same view type which is already cached
118
118
builtinProvidersFromCache . get ( notebookContribution . type ) ?. dispose ( ) ;
119
- implicitActivationEvents . push ( `onNotebookSerializer:${ notebookContribution . type } ` ) ;
120
119
} else {
121
120
extension . collector . error ( `Notebook type '${ notebookContribution . type } ' already used` ) ;
122
121
continue ;
123
122
}
124
123
}
125
124
125
+ implicitActivationEvents . push ( `onNotebookSerializer:${ notebookContribution . type } ` ) ;
126
+
126
127
this . add ( new NotebookProviderInfo ( {
127
128
extension : extension . description . identifier ,
128
129
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
1226
1226
}
1227
1227
this . _combineImplicitExtensionActivationEvents ( ) ;
1228
1228
perf . mark ( 'code/didHandleExtensionPoints' ) ;
1229
+ this . _registry . set ( availableExtensions ) ;
1229
1230
}
1230
1231
1231
1232
private _combineImplicitExtensionActivationEvents ( ) {
You can’t perform that action at this time.
0 commit comments