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.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/index.js b/index.js
index e575fca..26e1eef 100644
--- a/index.js
+++ b/index.js
@@ -152,9 +152,6 @@ WebTorrent.prototype.download = function (torrentId, opts, ontorrent) {
opts.client = self
opts.storage = opts.storage || self.storage
- // TODO: fix this to work with multiple torrents. this should probably be in cmd.js
- self.index = opts.index
-
var torrent = new Torrent(torrentId, extend({ client: self }, opts))
self.torrents.push(torrent)
@@ -178,7 +175,6 @@ WebTorrent.prototype.download = function (torrentId, opts, ontorrent) {
// Emit 'torrent' when a torrent is ready to be used
debug('torrent')
self.emit('torrent', torrent)
- self._onTorrent(torrent)
})
return torrent
@@ -280,23 +276,3 @@ WebTorrent.prototype.destroy = function (cb) {
parallel(tasks, cb)
}
-
-// TODO: this probably belongs in cmd.js
-WebTorrent.prototype._onTorrent = function (torrent) {
- var self = this
- debug('on torrent')
-
- // if no index specified, use largest file
- if (typeof torrent.index !== 'number') {
- var largestFile = torrent.files.reduce(function (a, b) {
- return a.length > b.length ? a : b
- })
- torrent.index = torrent.files.indexOf(largestFile)
- }
-
- torrent.files[torrent.index].select()
-
- // TODO: this won't work with multiple torrents
- self.index = torrent.index
- self.torrent = torrent
-}