Update default value for commentsEnabled
This commit is contained in:
parent
a1b572ea76
commit
46aaefa9b8
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue