diff options
Diffstat (limited to 'server/helpers/youtube-dl.ts')
-rw-r--r-- | server/helpers/youtube-dl.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/helpers/youtube-dl.ts b/server/helpers/youtube-dl.ts index 43156bb22..ff1fbf59f 100644 --- a/server/helpers/youtube-dl.ts +++ b/server/helpers/youtube-dl.ts | |||
@@ -30,7 +30,7 @@ function getYoutubeDLInfo (url: string): Promise<YoutubeDLInfo> { | |||
30 | } | 30 | } |
31 | 31 | ||
32 | function downloadYoutubeDLVideo (url: string) { | 32 | function downloadYoutubeDLVideo (url: string) { |
33 | const hash = crypto.createHash('sha256').update(url).digest('base64') | 33 | const hash = crypto.createHash('sha256').update(url).digest('hex') |
34 | const path = join(CONFIG.STORAGE.VIDEOS_DIR, hash + '-import.mp4') | 34 | const path = join(CONFIG.STORAGE.VIDEOS_DIR, hash + '-import.mp4') |
35 | 35 | ||
36 | logger.info('Importing video %s', url) | 36 | logger.info('Importing video %s', url) |