提交 c1a965c6 编写于 作者: I isidor

debug: npe

fixes #56666
上级 0e3a2219
......@@ -350,7 +350,7 @@ export class ConfigurationManager implements IConfigurationManager {
const picks = candidates.map(c => ({ label: c.label, debugger: c }));
return this.quickInputService.pick<(typeof picks)[0]>([...picks, { type: 'separator' }, { label: 'More...', debugger: undefined }], { placeHolder: nls.localize('selectDebug', "Select Environment") })
.then(picked => {
if (picked.debugger) {
if (picked && picked.debugger) {
return picked.debugger;
}
if (picked) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册