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

Commit

Permalink
fix: cascading connection from encrypted connection to parent connection
Browse files Browse the repository at this point in the history
  • Loading branch information
pgte authored and daviddias committed Feb 27, 2018
1 parent 7c2b7a9 commit e205ca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ module.exports = {
if (err) { return callback(err) }

conn.getPeerInfo((err, peerInfo) => {
encryptedConnection.setInnerConn(state.secure)
encryptedConnection.setInnerConn(new Connection(state.secure, conn))

if (err) { // no peerInfo yet, means I'm the receiver
encryptedConnection.setPeerInfo(new PeerInfo(state.id.remote))
Expand Down

0 comments on commit e205ca4

Please sign in to comment.