diff options
Diffstat (limited to 'server/lib')
-rw-r--r-- | server/lib/video-import.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
115 | language: importDataOverride?.language || importData.language, | 115 | language: importDataOverride?.language || importData.language, |
116 | commentsEnabled: importDataOverride?.commentsEnabled ?? CONFIG.DEFAULTS.PUBLISH.COMMENTS_ENABLED, | 116 | commentsEnabled: importDataOverride?.commentsEnabled ?? CONFIG.DEFAULTS.PUBLISH.COMMENTS_ENABLED, |
117 | downloadEnabled: importDataOverride?.downloadEnabled ?? CONFIG.DEFAULTS.PUBLISH.DOWNLOAD_ENABLED, | 117 | downloadEnabled: importDataOverride?.downloadEnabled ?? CONFIG.DEFAULTS.PUBLISH.DOWNLOAD_ENABLED, |
118 | waitTranscoding: importDataOverride?.waitTranscoding || false, | 118 | waitTranscoding: importDataOverride?.waitTranscoding ?? true, |
119 | state: VideoState.TO_IMPORT, | 119 | state: VideoState.TO_IMPORT, |
120 | nsfw: importDataOverride?.nsfw || importData.nsfw || false, | 120 | nsfw: importDataOverride?.nsfw || importData.nsfw || false, |
121 | description: importDataOverride?.description || importData.description, | 121 | description: importDataOverride?.description || importData.description, |