mirror of
https://github.com/webtorrent/bittorrent-tracker.git
synced 2024-12-14 11:26:25 +00:00
check for params.offers to determine if offers were received
This commit is contained in:
parent
ba4a52d2d1
commit
7a7ed575e1
@ -353,8 +353,8 @@ Server.prototype._onWebSocketRequest = function (socket, opts, params) {
|
||||
socket.send(JSON.stringify(response), socket.onSend)
|
||||
debug('sent response %s to %s', JSON.stringify(response), params.peer_id)
|
||||
|
||||
if (params.numwant) {
|
||||
debug('got offers %s from %s', JSON.stringify(params.offers), params.peer_id)
|
||||
if (params.offers) {
|
||||
debug('got offers %o from %s', params.offers, params.peer_id)
|
||||
debug('got %s peers from swarm %s', peers.length, params.info_hash)
|
||||
peers.forEach(function (peer, i) {
|
||||
peer.socket.send(JSON.stringify({
|
||||
|
Loading…
Reference in New Issue
Block a user