Fix youtube video import
authorChocobozzz <me@florianbigard.com>
Wed, 21 Nov 2018 15:29:09 +0000 (16:29 +0100)
committerChocobozzz <me@florianbigard.com>
Wed, 21 Nov 2018 15:29:32 +0000 (16:29 +0100)
server/helpers/youtube-dl.ts

index 70b4e1b780aa0a95a1ccc45af2c37952dca7a9e7..2a56630427855fee83ccb79e370cc6aa11c1009d 100644 (file)
@@ -24,10 +24,10 @@ const processOptions = {
 
 function getYoutubeDLInfo (url: string, opts?: string[]): Promise<YoutubeDLInfo> {
   return new Promise<YoutubeDLInfo>(async (res, rej) => {
-    const options = opts || [ '-j', '--flat-playlist' ]
+    const args = opts || [ '-j', '--flat-playlist' ]
 
     const youtubeDL = await safeGetYoutubeDL()
-    youtubeDL.getInfo(url, options, (err, info) => {
+    youtubeDL.getInfo(url, args, processOptions, (err, info) => {
       if (err) return rej(err)
       if (info.is_live === true) return rej(new Error('Cannot download a live streaming.'))