mirror of
https://github.com/versia-pub/server.git
synced 2026-03-13 22:09:16 +01:00
Fix type error
This commit is contained in:
parent
501b8bf78a
commit
e227522c55
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>(configDefaults, config, internalConfig);
|
return this.mergeConfigs<T>(configDefaults as T, config, internalConfig);
|
||||||
}
|
}
|
||||||
|
|
||||||
getConfigPath() {
|
getConfigPath() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue