From c7b7678f8a8e6c7e1863b2de7190dac4ab72c52c Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Sun, 27 Nov 2016 23:54:08 -0800 Subject: [PATCH] peer: fix tryAnnounce. --- lib/net/peer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/net/peer.js b/lib/net/peer.js index 923adde1..afa665d2 100644 --- a/lib/net/peer.js +++ b/lib/net/peer.js @@ -515,7 +515,7 @@ Peer.prototype.isLoader = function isLoader() { */ Peer.prototype.tryAnnounce = function tryAnnounce(items) { - return this.announce().catch(util.nop); + return this.announce(items).catch(util.nop); }; /**