Skip to content
This repository has been archived by the owner on Feb 4, 2022. It is now read-only.

Commit

Permalink
fix(connection): correct erroneous use of this in helper method
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroadst committed Dec 24, 2017
1 parent f47f723 commit 06b9388
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/connection/connection.js
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ function makeSSLConnection(self, _options) {
};

// Merge in options
merge(sslOptions, this.options);
merge(sslOptions, self.options);
merge(sslOptions, _options);

// Set options for ssl
Expand Down

0 comments on commit 06b9388

Please sign in to comment.