wow. my bad

pull/482/head
hunterlong 2020-04-24 08:11:18 -07:00
parent 8d5ace379c
commit c31f46da5c
3 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
# 0.90.33 (04-24-2020)
- Fixed config loading method
# 0.90.32 (04-23-2020)
- Modified the saving and loading process config.yml

View File

@ -35,7 +35,7 @@ func LoadConfigFile(directory string) (*DbConfig, error) {
p.Set("DB_PORT", db.DbPort)
}
if db.DbPass != "" {
p.Set("DB_PASS", db.DbPort)
p.Set("DB_PASS", db.DbPass)
}
if db.DbUser != "" {
p.Set("DB_USER", db.DbUser)

View File

@ -1 +1 @@
0.90.32
0.90.33