We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02c92fd commit d40eeccCopy full SHA for d40eecc
lib/websocket-tracker.js
@@ -43,9 +43,9 @@ WebSocketTracker.prototype.announce = function (opts) {
43
opts.info_hash = self.client._infoHash.toString('binary')
44
opts.peer_id = self.client._peerId.toString('binary')
45
46
- // Limit number of offers to only 5 (temporarily)
+ // Limit number of offers (temporarily)
47
// TODO: remove this when we cleanup old RTCPeerConnections cleanly
48
- if (opts.numWant > 5) opts.numWant = 5
+ if (opts.numWant > 10) opts.numWant = 10
49
50
self._generateOffers(opts.numWant, function (offers) {
51
opts.offers = offers
0 commit comments