Skip to content

Commit cdc2c5d

Browse files
committed
default numwant to 50 since that's the server default
1 parent 8b9dfb5 commit cdc2c5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function Client (peerId, port, torrent, opts) {
4545
self.torrentLength = torrent.length
4646

4747
// optional
48-
self._numWant = self._opts.numWant || 80
48+
self._numWant = self._opts.numWant || 50
4949
self._intervalMs = self._opts.interval || (30 * 60 * 1000) // default: 30 minutes
5050

5151
debug('new tracker client for ' + self._infoHash.toString('hex'))

0 commit comments

Comments
 (0)