Skip to content

Commit 5687a72

Browse files
committed
raise number of offers created to 10 again
1 parent fe2ac4a commit 5687a72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/client/websocket-tracker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ WebSocketTracker.prototype.announce = function (opts) {
4444
}
4545

4646
// Limit the number of offers that are generated, since it can be slow
47-
var numwant = Math.min(opts.numwant, 5)
47+
var numwant = Math.min(opts.numwant, 10)
4848

4949
self._generateOffers(numwant, function (offers) {
5050
var params = {

0 commit comments

Comments
 (0)