mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
Corrected property access on possibly undefined variable.
This commit is contained in:
parent
a0bf25e308
commit
857408540c
@ -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: {}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user