Correctly fix video feeds endpoint

pull/6252/head
Chocobozzz 2024-02-16 09:26:14 +01:00
parent 1387e0a3bb
commit 22ab711501
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

@ -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,