mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-21 17:19:01 +01:00
Make github-authentication a UI extension again
This commit is contained in:
@@ -686,7 +686,11 @@ export abstract class AbstractExtHostExtensionService extends Disposable impleme
|
||||
return this._startExtensionHost();
|
||||
}
|
||||
|
||||
public $activateByEvent(activationEvent: string): Promise<void> {
|
||||
public $activateByEvent(activationEvent: string, eager: boolean = true): Promise<void> {
|
||||
if (eager) {
|
||||
return this._activateByEvent(activationEvent, false);
|
||||
}
|
||||
|
||||
return (
|
||||
this._readyToRunExtensions.wait()
|
||||
.then(_ => this._activateByEvent(activationEvent, false))
|
||||
|
||||
Reference in New Issue
Block a user