Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2016-07-27 06:25:03 +0300
committerFeross Aboukhadijeh <feross@feross.org>2016-07-27 06:25:03 +0300
commit759db8b481c569fda9f4ebd74c2a0b037164114c (patch)
treeb50f043985c9772b4a01cdc0cf4116d7463e5da5 /index.js
parentf30195dd72baa526a7ff508055de759591469a4d (diff)
Ensure client.peerId is always a string
Diffstat (limited to 'index.js')
-rw-r--r--index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.js b/index.js
index 19a3322..8ed828a 100644
--- a/index.js
+++ b/index.js
@@ -63,7 +63,7 @@ function WebTorrent (opts) {
} else if (Buffer.isBuffer(opts.peerId)) {
self.peerId = opts.peerId.toString('hex')
} else {
- self.peerId = Buffer.from(VERSION_PREFIX + hat(48))
+ self.peerId = Buffer.from(VERSION_PREFIX + hat(48)).toString('hex')
}
self.peerIdBuffer = Buffer.from(self.peerId, 'hex')