Skip to content

Commit

Permalink
#1587 Support only one language as key
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 committed Jan 19, 2017
1 parent 3f7a298 commit b074558
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/platform/configuration/common/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export class ConfigModel<T> implements IConfigModel<T> {
function onOverrideSettingsValue(property: string, value: any): void {
overrides = overrides || [];
overrides.push({
identifiers: property.substring(1, property.length - 1).split(',').map(p => p.trim()),
identifiers: [property.substring(1, property.length - 1).trim()],
raw: value,
contents: null
});
Expand Down

0 comments on commit b074558

Please sign in to comment.