diff options
Diffstat (limited to 'server/controllers/api/videos/import.ts')
-rw-r--r-- | server/controllers/api/videos/import.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/controllers/api/videos/import.ts b/server/controllers/api/videos/import.ts index 1f08fe20a..04c9b547b 100644 --- a/server/controllers/api/videos/import.ts +++ b/server/controllers/api/videos/import.ts | |||
@@ -207,7 +207,7 @@ async function processThumbnail (req: express.Request, video: VideoModel) { | |||
207 | if (thumbnailField) { | 207 | if (thumbnailField) { |
208 | const thumbnailPhysicalFile = thumbnailField[ 0 ] | 208 | const thumbnailPhysicalFile = thumbnailField[ 0 ] |
209 | 209 | ||
210 | return createVideoMiniatureFromExisting(thumbnailPhysicalFile.path, video, ThumbnailType.MINIATURE) | 210 | return createVideoMiniatureFromExisting(thumbnailPhysicalFile.path, video, ThumbnailType.MINIATURE, false) |
211 | } | 211 | } |
212 | 212 | ||
213 | return undefined | 213 | return undefined |
@@ -218,7 +218,7 @@ async function processPreview (req: express.Request, video: VideoModel) { | |||
218 | if (previewField) { | 218 | if (previewField) { |
219 | const previewPhysicalFile = previewField[0] | 219 | const previewPhysicalFile = previewField[0] |
220 | 220 | ||
221 | return createVideoMiniatureFromExisting(previewPhysicalFile.path, video, ThumbnailType.PREVIEW) | 221 | return createVideoMiniatureFromExisting(previewPhysicalFile.path, video, ThumbnailType.PREVIEW, false) |
222 | } | 222 | } |
223 | 223 | ||
224 | return undefined | 224 | return undefined |