fix(config): load sqlite from configdir (#281)

This commit is contained in:
Ludvig Lundgren 2022-05-21 14:49:11 +02:00 committed by GitHub
parent 2ad939ee8b
commit 2a10ea27c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -104,6 +104,7 @@ func New(configPath string, version string) *AppConfig {
c := &AppConfig{}
c.defaults()
c.Config.Version = version
c.Config.ConfigPath = configPath
c.load(configPath)