mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
Fix type error
This commit is contained in:
parent
501b8bf78a
commit
e227522c55
|
|
@ -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…
Reference in a new issue