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.js12
1 files changed, 8 insertions, 4 deletions
diff --git a/index.js b/index.js
index a807c9e..f024ba8 100644
--- a/index.js
+++ b/index.js
@@ -335,18 +335,22 @@ class WebTorrent extends EventEmitter {
* @param {string|Buffer|Torrent} torrentId
* @param {function} cb
*/
- remove (torrentId, cb) {
+ remove (torrentId, opts, cb) {
+ if (typeof opts === 'function') return this.remove(torrentId, null, opts)
+
this._debug('remove')
const torrent = this.get(torrentId)
if (!torrent) throw new Error(`No torrent with id ${torrentId}`)
- this._remove(torrentId, cb)
+ this._remove(torrentId, opts, cb)
}
- _remove (torrentId, cb) {
+ _remove (torrentId, opts, cb) {
+ if (typeof opts === 'function') return this._remove(torrentId, null, opts)
+
const torrent = this.get(torrentId)
if (!torrent) return
this.torrents.splice(this.torrents.indexOf(torrent), 1)
- torrent.destroy(cb)
+ torrent.destroy(opts, cb)
}
address () {