We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea807ca commit 6295bf5Copy full SHA for 6295bf5
1 file changed
src/adapters/config/AppConfig.ts
@@ -64,7 +64,7 @@ export class AppConfig {
64
// static getSecret(secretKey:string): string {}
65
66
67
- /** sets `"path": "value"` to config, specifically, to `appConfig.path`
+ /** sets `{"path": "value"}` to config, specifically, to `appConfig.path`
68
* Note this does not actually change the values in the file, but only in
69
* the in-memory "cache"
70
* @param path the path to the key in appConfig. Do not use `{}:.;` in the key name,
@@ -73,7 +73,6 @@ export class AppConfig {
73
* `appConfig`
74
*/
75
static set(path:string, value: string): void {
76
- config.appConfig[path]=value
77
- // AppConfig._sVariables[path] = variable
+ config['appConfig'][path] = value
78
}
79
0 commit comments