aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/videos
diff options
context:
space:
mode:
Diffstat (limited to 'server/controllers/api/videos')
-rw-r--r--server/controllers/api/videos/import.ts2
-rw-r--r--server/controllers/api/videos/view.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/server/controllers/api/videos/import.ts b/server/controllers/api/videos/import.ts
index 44283e266..7576e77e7 100644
--- a/server/controllers/api/videos/import.ts
+++ b/server/controllers/api/videos/import.ts
@@ -274,7 +274,7 @@ async function buildVideo (channelId: number, body: VideoImportCreate, importDat
274 support: body.support || null, 274 support: body.support || null,
275 privacy: body.privacy || VideoPrivacy.PRIVATE, 275 privacy: body.privacy || VideoPrivacy.PRIVATE,
276 duration: 0, // duration will be set by the import job 276 duration: 0, // duration will be set by the import job
277 channelId: channelId, 277 channelId,
278 originallyPublishedAt: body.originallyPublishedAt 278 originallyPublishedAt: body.originallyPublishedAt
279 ? new Date(body.originallyPublishedAt) 279 ? new Date(body.originallyPublishedAt)
280 : importData.originallyPublishedAt 280 : importData.originallyPublishedAt
diff --git a/server/controllers/api/videos/view.ts b/server/controllers/api/videos/view.ts
index dee1ec67c..a747fa334 100644
--- a/server/controllers/api/videos/view.ts
+++ b/server/controllers/api/videos/view.ts
@@ -39,7 +39,7 @@ async function viewVideo (req: express.Request, res: express.Response) {
39 }) 39 })
40 40
41 if (successView) { 41 if (successView) {
42 Hooks.runAction('action:api.video.viewed', { video: video, ip, req, res }) 42 Hooks.runAction('action:api.video.viewed', { video, ip, req, res })
43 } 43 }
44 44
45 await updateUserHistoryIfNeeded(body, video, res) 45 await updateUserHistoryIfNeeded(body, video, res)