aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video-import/video-import.service.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/shared/video-import/video-import.service.ts')
-rw-r--r--client/src/app/shared/video-import/video-import.service.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/src/app/shared/video-import/video-import.service.ts b/client/src/app/shared/video-import/video-import.service.ts
index 7ae66ddfc..11a7694c8 100644
--- a/client/src/app/shared/video-import/video-import.service.ts
+++ b/client/src/app/shared/video-import/video-import.service.ts
@@ -67,6 +67,7 @@ export class VideoImportService {
67 const description = video.description || null 67 const description = video.description || null
68 const support = video.support || null 68 const support = video.support || null
69 const scheduleUpdate = video.scheduleUpdate || null 69 const scheduleUpdate = video.scheduleUpdate || null
70 const originallyPublishedAt = video.originallyPublishedAt || null
70 71
71 return { 72 return {
72 name: video.name, 73 name: video.name,
@@ -83,7 +84,8 @@ export class VideoImportService {
83 commentsEnabled: video.commentsEnabled, 84 commentsEnabled: video.commentsEnabled,
84 thumbnailfile: video.thumbnailfile, 85 thumbnailfile: video.thumbnailfile,
85 previewfile: video.previewfile, 86 previewfile: video.previewfile,
86 scheduleUpdate 87 scheduleUpdate,
88 originallyPublishedAt
87 } 89 }
88 } 90 }
89 91