Improve webtorrent import error message when the torrent has multiple
authorChocobozzz <me@florianbigard.com>
Mon, 17 Sep 2018 15:50:51 +0000 (17:50 +0200)
committerChocobozzz <me@florianbigard.com>
Mon, 17 Sep 2018 15:50:51 +0000 (17:50 +0200)
files

server/helpers/webtorrent.ts

index 2fdfd18760d2d54616b841926d621b4db7b0d28e..f4b44bc4ff6c452ca352cd77ccba41ac1580dba5 100644 (file)
@@ -24,7 +24,7 @@ function downloadWebTorrentVideo (target: { magnetUri: string, torrentName?: str
         if (timer) clearTimeout(timer)
 
         return safeWebtorrentDestroy(webtorrent, torrentId, file.name, target.torrentName)
-          .then(() => rej(new Error('The number of files is not equal to 1 for ' + torrentId)))
+          .then(() => rej(new Error('Cannot import torrent ' + torrentId + ': there are multiple files in it')))
       }
 
       file = torrent.files[ 0 ]