From 02988fdc0bdd345bddf89171d258822cab4229d6 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 15 Feb 2018 18:40:24 +0100 Subject: Fix remote image fetching --- server/tools/import-youtube.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'server/tools/import-youtube.ts') diff --git a/server/tools/import-youtube.ts b/server/tools/import-youtube.ts index 295109cd8..ab91afbc0 100644 --- a/server/tools/import-youtube.ts +++ b/server/tools/import-youtube.ts @@ -62,7 +62,7 @@ async function run () { console.log('Will download and upload %d videos.\n', videos.length) for (const video of videos) { - await processVideo(video, program['languageCode']) + await processVideo(video, program['language']) } console.log('I\'m finished!') @@ -107,7 +107,10 @@ async function uploadVideoOnPeerTube (videoInfo: any, videoPath: string, languag const licence = getLicence(videoInfo.license) let tags = [] if (Array.isArray(videoInfo.tags)) { - tags = videoInfo.tags.filter(t => t.length < CONSTRAINTS_FIELDS.VIDEOS.TAG.max).slice(0, 5) + tags = videoInfo.tags + .filter(t => t.length < CONSTRAINTS_FIELDS.VIDEOS.TAG.max) + .map(t => t.normalize()) + .slice(0, 5) } let thumbnailfile -- cgit v1.2.3