mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 08:33:00 -06:00
Fix typo in sequelize config.js file which prevented mariadb database access
This commit is contained in:
parent
4782bafe7d
commit
c79f9d460f
|
|
@ -24,7 +24,7 @@ function getConfig() {
|
|||
host: process.env.DB_HOST || defaultConfig.host,
|
||||
logging: defaultConfig.logging,
|
||||
password: process.env.DB_PASS || defaultConfig.password,
|
||||
port: process.env.DB_PASS || defaultConfig.port,
|
||||
port: process.env.DB_PORT || defaultConfig.port,
|
||||
storage: process.env.DB_STORAGE || defaultConfig.storage,
|
||||
username: process.env.DB_USER || defaultConfig.username,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue