Update default value for commentsEnabled

pull/2145/head
Frank Sträter 2019-09-18 14:23:35 +02:00 committed by Chocobozzz
parent a1b572ea76
commit 46aaefa9b8
1 changed files with 2 additions and 2 deletions

View File

@ -185,8 +185,8 @@ async function addVideo (req: express.Request, res: express.Response) {
category: videoInfo.category,
licence: videoInfo.licence,
language: videoInfo.language,
commentsEnabled: videoInfo.commentsEnabled || false,
downloadEnabled: videoInfo.downloadEnabled !== false, // If the value is not "false", the default is "true"
commentsEnabled: videoInfo.commentsEnabled !== false, // If the value is not "false", the default is "true"
downloadEnabled: videoInfo.downloadEnabled !== false,
waitTranscoding: videoInfo.waitTranscoding || false,
state: CONFIG.TRANSCODING.ENABLED ? VideoState.TO_TRANSCODE : VideoState.PUBLISHED,
nsfw: videoInfo.nsfw || false,