diff --git a/server/models/video/video.ts b/server/models/video/video.ts index 7624b0649..946be6095 100644 --- a/server/models/video/video.ts +++ b/server/models/video/video.ts @@ -225,7 +225,8 @@ type AvailableForListIDsOptions = { }, include: [ { - model: VideoChannelModel.scope({ method: [ VideoChannelScopeNames.SUMMARY, true ] }) + model: VideoChannelModel.scope({ method: [ VideoChannelScopeNames.SUMMARY, true ] }), + required: true } ] } @@ -1566,8 +1567,8 @@ export class VideoModel extends Model { apiScope.push({ method: [ ScopeNames.FOR_API, { - ids, withFiles: - options.withFiles, + ids, + withFiles: options.withFiles, videoPlaylistId: options.videoPlaylistId } as ForAPIOptions ]