X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Fvideo-import.ts;h=7960798758f9fbf5037588d964568d404a7c2c2b;hb=37ff5005b47b9df2933a0b8812609a6c41faa170;hp=d9da09040e5ab59344a9e0768e6fe4a25e8835c6;hpb=3204f4d17dec79413a94eae8a71b72e0c7ec7ba5;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/video-import.ts b/server/lib/video-import.ts index d9da09040..796079875 100644 --- a/server/lib/video-import.ts +++ b/server/lib/video-import.ts @@ -115,7 +115,7 @@ async function buildVideoFromImport ({ channelId, importData, importDataOverride language: importDataOverride?.language || importData.language, commentsEnabled: importDataOverride?.commentsEnabled ?? CONFIG.DEFAULTS.PUBLISH.COMMENTS_ENABLED, downloadEnabled: importDataOverride?.downloadEnabled ?? CONFIG.DEFAULTS.PUBLISH.DOWNLOAD_ENABLED, - waitTranscoding: importDataOverride?.waitTranscoding || false, + waitTranscoding: importDataOverride?.waitTranscoding ?? true, state: VideoState.TO_IMPORT, nsfw: importDataOverride?.nsfw || importData.nsfw || false, description: importDataOverride?.description || importData.description,