Skip to content

Commit

Permalink
#56 Fix config adjusting overridable json
Browse files Browse the repository at this point in the history
  • Loading branch information
andreafspeziale authored and ceres3idoo committed Mar 4, 2019
1 parent adfcf9a commit 8579426
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ Release date: 2019-02-REPLEACE_ME.

- [Approve command](https://github.com/eidoo/hybrid-exchange-sdk/issues/43)

### Fixed
- [Config](https://github.com/eidoo/hybrid-exchange-sdk/issues/56)

## [v1.1.0](https://gitlab.com/eidoo_io/hybrid-exchange-sdk/compare/fa85a7...v1.1.0)

Release date: 2019-02-12.
Expand Down
2 changes: 1 addition & 1 deletion src/config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let config = {
let ovverrideConfig
try {
// eslint-disable-next-line
ovverrideConfig = config.get('override.config');
ovverrideConfig = require('./override.json')
config = _.merge(config, ovverrideConfig)
} catch (err) {
// Do nothing
Expand Down

0 comments on commit 8579426

Please sign in to comment.