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
path: root/bin
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2015-05-24 20:17:15 +0300
committerFeross Aboukhadijeh <feross@feross.org>2015-05-24 20:17:15 +0300
commitc995701f872613d69f86af989dd94b0d7e949746 (patch)
tree2871686b132c4bec0e21cfdc295ff987f2256e69 /bin
parent8fb93572b170e25b3fe0058260edc1541acc6796 (diff)
handle uppercase file extension names
Diffstat (limited to 'bin')
-rwxr-xr-xbin/cmd.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/cmd.js b/bin/cmd.js
index b05830b..4c9b343 100755
--- a/bin/cmd.js
+++ b/bin/cmd.js
@@ -429,7 +429,7 @@ function runDownload (torrentId) {
}
function runSeed (input) {
- if (path.extname(input) === '.torrent' || /^magnet:/.test(input)) {
+ if (path.extname(input).toLowerCase() === '.torrent' || /^magnet:/.test(input)) {
// `webtorrent seed` is meant for creating a new torrent based on a file or folder
// of content, not a torrent id (.torrent or a magnet uri). If this command is used
// incorrectly, let's just do the right thing.