diff options
author | Sheogorath | 2018-01-23 11:45:07 +0100 |
---|---|---|
committer | Sheogorath | 2018-01-23 12:00:11 +0100 |
commit | 817bb9e639dd7e4fb3844971c7df49eb671e4304 (patch) | |
tree | 7b59a59892ede619ee1451c7f3146adffeb07a42 | |
parent | eec2318bda29f6633f9c9b4198e507959fa12d46 (diff) |
Fix broken port config
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
Diffstat (limited to '')
-rw-r--r-- | lib/config/environment.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/config/environment.js b/lib/config/environment.js index 932363da..e2112b6a 100644 --- a/lib/config/environment.js +++ b/lib/config/environment.js @@ -39,7 +39,7 @@ module.exports = { secretKey: process.env.HMD_MINIO_SECRET_KEY, endPoint: process.env.HMD_MINIO_ENDPOINT, secure: toBooleanConfig(process.env.HMD_MINIO_SECURE), - port: parseInt(process.env.HMD_MINIO_PORT) + port: process.env.HMD_MINIO_PORT }, s3bucket: process.env.HMD_S3_BUCKET, facebook: { |