提交 e3ba8a48 编写于 作者: A Amy Qiu

Fix NPE

上级 6e67040b
......@@ -161,7 +161,11 @@ export class TerminalInstance implements ITerminalInstance {
this._createXterm();
if (platform.isWindows) {
this._processReady.then(() => this._windowsShellHelper = new WindowsShellHelper(this._processId, this._shellLaunchConfig.executable, this, this._xterm));
this._processReady.then(() => {
if (!this._isDisposed) {
this._windowsShellHelper = new WindowsShellHelper(this._processId, this._shellLaunchConfig.executable, this, this._xterm);
}
});
}
// Only attach xterm.js to the DOM if the terminal panel has been opened before.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册