Skip to content

Commit cb0de3b

Browse files
committed
Fixes #875, #890 - broken configuration get
1 parent 12d5490 commit cb0de3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export class Configuration {
117117
section += `.${args[1]}`;
118118
if (typeof args[2] === 'string') {
119119
section += `.${args[2]}`;
120-
if (typeof args[2] === 'string') {
120+
if (typeof args[3] === 'string') {
121121
section += `.${args[3]}`;
122122
resource = args[4];
123123
defaultValue = args[5];

0 commit comments

Comments
 (0)