1
0
Fork 0

Client: Default dapimap to empty object

Without this, we have a BC break.

* src/client/Client.js (_init): Default program.dapimap to DataApiMediator
  instance to an empty object to maintain BC.
master
Mike Gerwitz 2018-07-18 16:52:04 -04:00
parent 8888749059
commit 7fd07f00e9
1 changed files with 1 additions and 1 deletions

View File

@ -347,7 +347,7 @@ module.exports = Class( 'Client' )
this._factory.createDataApiMediator(
this.ui,
this._dataValidator,
this.program.dapimap,
this.program.dapimap || {},
() => this.getQuote()
).monitor( this._dapiManager );