mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Fix null ref error in terminal service (#20656)
This commit is contained in:
@@ -464,7 +464,7 @@ export abstract class BaseExtHostTerminalService extends Disposable implements I
|
|||||||
if (id === null) {
|
if (id === null) {
|
||||||
this._activeTerminal = undefined;
|
this._activeTerminal = undefined;
|
||||||
if (original !== this._activeTerminal) {
|
if (original !== this._activeTerminal) {
|
||||||
this._onDidChangeActiveTerminal.fire(this._activeTerminal.value);
|
this._onDidChangeActiveTerminal.fire(undefined); // {{SQL CARBON EDIT}} This was set to undefined above so send that - this will be replaced with later refactorings that VS Code did
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user