fix: need to use set, not objectPath directly

This commit is contained in:
Derrick Hammer 2023-07-07 10:12:39 -04:00
parent dbaabbf2f1
commit 82f603c00a
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -455,7 +455,7 @@ export class Config {
// eslint-disable-next-line @typescript-eslint/no-for-in-array
for (const key in argPairs) {
objectPath.set(this.data, key, argPairs[key]);
this.set(key, argPairs[key]);
}
}