mirror of https://github.com/Chocobozzz/PeerTube
Small cleanup
parent
6872996d29
commit
58b6fdcafc
|
@ -626,20 +626,15 @@ function videoActivityObjectToDBAttributes (videoChannel: MChannelId, videoObjec
|
||||||
const privacy = to.indexOf(ACTIVITY_PUB.PUBLIC) !== -1 ? VideoPrivacy.PUBLIC : VideoPrivacy.UNLISTED
|
const privacy = to.indexOf(ACTIVITY_PUB.PUBLIC) !== -1 ? VideoPrivacy.PUBLIC : VideoPrivacy.UNLISTED
|
||||||
const duration = videoObject.duration.replace(/[^\d]+/, '')
|
const duration = videoObject.duration.replace(/[^\d]+/, '')
|
||||||
|
|
||||||
let language: string | undefined
|
const language = videoObject.language?.identifier
|
||||||
if (videoObject.language) {
|
|
||||||
language = videoObject.language.identifier
|
|
||||||
}
|
|
||||||
|
|
||||||
let category: number | undefined
|
const category = videoObject.category
|
||||||
if (videoObject.category) {
|
? parseInt(videoObject.category.identifier, 10)
|
||||||
category = parseInt(videoObject.category.identifier, 10)
|
: undefined
|
||||||
}
|
|
||||||
|
|
||||||
let licence: number | undefined
|
const licence = videoObject.licence
|
||||||
if (videoObject.licence) {
|
? parseInt(videoObject.licence.identifier, 10)
|
||||||
licence = parseInt(videoObject.licence.identifier, 10)
|
: undefined
|
||||||
}
|
|
||||||
|
|
||||||
const description = videoObject.content || null
|
const description = videoObject.content || null
|
||||||
const support = videoObject.support || null
|
const support = videoObject.support || null
|
||||||
|
@ -662,7 +657,11 @@ function videoActivityObjectToDBAttributes (videoChannel: MChannelId, videoObjec
|
||||||
duration: parseInt(duration, 10),
|
duration: parseInt(duration, 10),
|
||||||
createdAt: new Date(videoObject.published),
|
createdAt: new Date(videoObject.published),
|
||||||
publishedAt: new Date(videoObject.published),
|
publishedAt: new Date(videoObject.published),
|
||||||
originallyPublishedAt: videoObject.originallyPublishedAt ? new Date(videoObject.originallyPublishedAt) : null,
|
|
||||||
|
originallyPublishedAt: videoObject.originallyPublishedAt
|
||||||
|
? new Date(videoObject.originallyPublishedAt)
|
||||||
|
: null,
|
||||||
|
|
||||||
updatedAt: new Date(videoObject.updated),
|
updatedAt: new Date(videoObject.updated),
|
||||||
views: videoObject.views,
|
views: videoObject.views,
|
||||||
likes: 0,
|
likes: 0,
|
||||||
|
|
Loading…
Reference in New Issue