mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 11:10:48 +00:00
parent
c335bde263
commit
db7d305c4d
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ export class ConfigurationManager implements debug.IConfigurationManager {
|
|||
return null;
|
||||
}
|
||||
|
||||
return config.configurations.filter(config => config.name === name).pop();
|
||||
return config.configurations.filter(config => config && config.name === name).pop();
|
||||
}
|
||||
|
||||
public resloveConfiguration(config: debug.IConfig): TPromise<debug.IConfig> {
|
||||
|
|
Loading…
Reference in a new issue