aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video-import
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/shared/video-import')
-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 2163eb905..7ae13154d 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,
@@ -84,7 +85,8 @@ export class VideoImportService {
84 downloadEnabled: video.downloadEnabled, 85 downloadEnabled: video.downloadEnabled,
85 thumbnailfile: video.thumbnailfile, 86 thumbnailfile: video.thumbnailfile,
86 previewfile: video.previewfile, 87 previewfile: video.previewfile,
87 scheduleUpdate 88 scheduleUpdate,
89 originallyPublishedAt
88 } 90 }
89 } 91 }
90 92