diff --git a/server/core/controllers/feeds/shared/video-feed-utils.ts b/server/core/controllers/feeds/shared/video-feed-utils.ts index b6306c214..260dac35f 100644 --- a/server/core/controllers/feeds/shared/video-feed-utils.ts +++ b/server/core/controllers/feeds/shared/video-feed-utils.ts @@ -42,7 +42,7 @@ export function getCommonVideoFeedAttributes (video: VideoModel) { const thumbnailModels: MThumbnail[] = [] if (video.hasPreview()) thumbnailModels.push(video.getPreview()) - thumbnailModels.push(video.getMiniature()) + if (video.hasMiniature()) thumbnailModels.push(video.getMiniature()) return { title: video.name,