Fix thumbnails in video blacklist list endpoint

pull/1935/head
Chocobozzz 2019-05-21 10:59:29 +02:00
parent 8c6781e956
commit b9dde7d96b
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import { AllowNull, BelongsTo, Column, CreatedAt, DataType, Default, ForeignKey, Is, Model, Table, UpdatedAt } from 'sequelize-typescript'
import { getSortOnModel, SortType, throwIfNotValid } from '../utils'
import { VideoModel } from './video'
import { VideoModel, ScopeNames as VideoModelScopeNames } from './video'
import { ScopeNames as VideoChannelScopeNames, VideoChannelModel } from './video-channel'
import { isVideoBlacklistReasonValid, isVideoBlacklistTypeValid } from '../../helpers/custom-validators/video-blacklist'
import { VideoBlacklist, VideoBlacklistType } from '../../../shared/models/videos'
@ -58,7 +58,7 @@ export class VideoBlacklistModel extends Model<VideoBlacklistModel> {
order: getSortOnModel(sort.sortModel, sort.sortValue),
include: [
{
model: VideoModel,
model: VideoModel.scope(VideoModelScopeNames.WITH_THUMBNAILS),
required: true,
include: [
{