Corrected property access on possibly undefined variable.

This commit is contained in:
David H. Bronke 2014-12-03 10:53:55 -06:00
parent a0bf25e308
commit 857408540c

View File

@ -32,7 +32,7 @@ var Client = function(config) {
this.secretKey = null;
this.ssl = this.connectionParameters.ssl || false;
this._types = config.types || types;
this._types = c.types || types;
this._parserOverrides = {
text: {},
binary: {}