diff --git a/lib/websocket-tracker.js b/lib/websocket-tracker.js index 570a78a..e9e7388 100644 --- a/lib/websocket-tracker.js +++ b/lib/websocket-tracker.js @@ -43,9 +43,9 @@ WebSocketTracker.prototype.announce = function (opts) { opts.info_hash = self.client._infoHash.toString('binary') opts.peer_id = self.client._peerId.toString('binary') - // Limit number of offers to only 5 (temporarily) + // Limit number of offers (temporarily) // TODO: remove this when we cleanup old RTCPeerConnections cleanly - if (opts.numWant > 5) opts.numWant = 5 + if (opts.numWant > 10) opts.numWant = 10 self._generateOffers(opts.numWant, function (offers) { opts.offers = offers