bugfix for issue where peer may not have any extensions as advertised
This commit is contained in:
parent
5a3c0abe72
commit
677e4522ea
2
index.js
2
index.js
|
@ -50,7 +50,7 @@ module.exports = function (metadata) {
|
|||
}
|
||||
|
||||
ut_metadata.prototype.onExtendedHandshake = function (handshake) {
|
||||
if (!handshake.m.ut_metadata) {
|
||||
if (!handshake.m || !handshake.m.ut_metadata) {
|
||||
return this.emit('warning', new Error('Peer does not support ut_metadata'))
|
||||
}
|
||||
if (!handshake.metadata_size) {
|
||||
|
|
Loading…
Reference in New Issue