diff --git a/server/tools/peertube-import-videos.ts b/server/tools/peertube-import-videos.ts index 39e8221c0..eaa792763 100644 --- a/server/tools/peertube-import-videos.ts +++ b/server/tools/peertube-import-videos.ts @@ -333,7 +333,7 @@ function isNSFW (info: any) { function normalizeTargetUrl (url: string) { let normalizedUrl = url.replace(/\/+$/, '') - if (!normalizedUrl.startsWith('http://') || !normalizedUrl.startsWith('https://')) { + if (!normalizedUrl.startsWith('http://') && !normalizedUrl.startsWith('https://')) { normalizedUrl = 'https://' + normalizedUrl }