mirror of
https://github.com/versia-pub/server.git
synced 2026-03-13 22:09:16 +01:00
Fix cli parser bug where it wouldn't add default config
This commit is contained in:
parent
b8d2f8a940
commit
4a559e290e
1 changed files with 1 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ export class ConfigManager {
|
||||||
const config = await this.readConfig<T>();
|
const config = await this.readConfig<T>();
|
||||||
const internalConfig = await this.readInternalConfig<T>();
|
const internalConfig = await this.readInternalConfig<T>();
|
||||||
|
|
||||||
return this.mergeConfigs<T>(config, internalConfig);
|
return this.mergeConfigs<T>(defaultConfig, config, internalConfig);
|
||||||
}
|
}
|
||||||
|
|
||||||
getConfigPath() {
|
getConfigPath() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue