diff options
author | Florrie <towerofnix@gmail.com> | 2018-03-03 08:38:19 -0400 |
---|---|---|
committer | Florrie <towerofnix@gmail.com> | 2018-03-03 08:38:19 -0400 |
commit | 4ff150e42f03d51ddfed228e7da33b19eb773eaf (patch) | |
tree | 9e7516acaef908c26f02274f04ac5484b940345c /src | |
parent | db9a8b38ed93891e6e77ddf4234600dc57eb2b23 (diff) |
Output sane extnames in local downloader
Diffstat (limited to 'src')
-rw-r--r-- | src/downloaders.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/downloaders.js b/src/downloaders.js index 138b2d6..663e493 100644 --- a/src/downloaders.js +++ b/src/downloaders.js @@ -79,7 +79,7 @@ function makeLocalDownloader() { // TODO: Is it necessary to sanitize here? // Haha, the answer to "should I sanitize" is probably always YES.. const base = path.basename(arg, path.extname(arg)) - const file = dir + '/' + sanitize(base) + '.mp3' + const file = dir + '/' + sanitize(base) + path.extname(arg) return copyFile(arg, file) .then(() => file) } |