Correctly fix video feeds endpoint
This commit is contained in:
parent
1387e0a3bb
commit
22ab711501
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue