Browse Source

Fixes #875, #890 - broken configuration get

main
Eric Amodio 5 years ago
parent
commit
cb0de3b245
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/configuration.ts

+ 1
- 1
src/configuration.ts View File

@ -117,7 +117,7 @@ export class Configuration {
section += `.${args[1]}`;
if (typeof args[2] === 'string') {
section += `.${args[2]}`;
if (typeof args[2] === 'string') {
if (typeof args[3] === 'string') {
section += `.${args[3]}`;
resource = args[4];
defaultValue = args[5];

Loading…
Cancel
Save