Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'index.js')
-rw-r--r--index.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/index.js b/index.js
index 1f24c4b..4f4577d 100644
--- a/index.js
+++ b/index.js
@@ -199,9 +199,11 @@ WebTorrent.prototype.seed = function (input, opts, onseed) {
var streams
var torrent = self.add(undefined, opts, function (torrent) {
- var tasks = [function (cb) {
- torrent.load(streams, cb)
- }]
+ var tasks = [
+ function (cb) {
+ torrent.load(streams, cb)
+ }
+ ]
if (self.dht) {
tasks.push(function (cb) {
torrent.on('dhtAnnounce', cb)