We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c50126 commit 77b257aCopy full SHA for 77b257a
1 file changed
src/vs/platform/configuration/common/configurationModels.ts
@@ -48,7 +48,7 @@ export class ConfigurationModel implements IConfigurationModel {
48
getOverrideValue<V>(section: string | undefined, overrideIdentifier: string): V | undefined {
49
const overrideContents = this.getContentsForOverrideIdentifer(overrideIdentifier);
50
return overrideContents
51
- ? section ? getConfigurationValue<any>(this.contents, section) : overrideContents
+ ? section ? getConfigurationValue<any>(overrideContents, section) : overrideContents
52
: undefined;
53
}
54
0 commit comments