Skip to content

Commit 77b257a

Browse files
committed
fix getOverrideValue
1 parent 2c50126 commit 77b257a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/platform/configuration/common/configurationModels.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export class ConfigurationModel implements IConfigurationModel {
4848
getOverrideValue<V>(section: string | undefined, overrideIdentifier: string): V | undefined {
4949
const overrideContents = this.getContentsForOverrideIdentifer(overrideIdentifier);
5050
return overrideContents
51-
? section ? getConfigurationValue<any>(this.contents, section) : overrideContents
51+
? section ? getConfigurationValue<any>(overrideContents, section) : overrideContents
5252
: undefined;
5353
}
5454

0 commit comments

Comments
 (0)