From c49ae22d52417e976533e364fbf98ce8c41df384 Mon Sep 17 00:00:00 2001 From: Kaylee <34007889+KayleePop@users.noreply.github.com> Date: Thu, 17 May 2018 12:57:17 -0500 Subject: Don't call torrent.load when a FS path is seeded --- index.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'index.js') diff --git a/index.js b/index.js index 7466a9e..887c473 100644 --- a/index.js +++ b/index.js @@ -257,13 +257,17 @@ class WebTorrent extends EventEmitter { this._debug('seed') opts = opts ? Object.assign({}, opts) : {} + const isFilePath = typeof input === 'string' + // When seeding from fs path, initialize store from that path to avoid a copy - if (typeof input === 'string') opts.path = path.dirname(input) + if (isFilePath) opts.path = path.dirname(input) if (!opts.createdBy) opts.createdBy = `WebTorrent/${VERSION_STR}` const onTorrent = torrent => { const tasks = [ cb => { + // when a filesystem path is specified, files are already in the FS store + if (isFilePath) return cb() torrent.load(streams, cb) } ] -- cgit v1.2.3