aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/video/video-blacklist.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/models/video/video-blacklist.ts')
-rw-r--r--server/models/video/video-blacklist.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/models/video/video-blacklist.ts b/server/models/video/video-blacklist.ts
index 3adcec149..26167174a 100644
--- a/server/models/video/video-blacklist.ts
+++ b/server/models/video/video-blacklist.ts
@@ -36,7 +36,7 @@ export class VideoBlacklistModel extends Model<VideoBlacklistModel> {
36 const query = { 36 const query = {
37 offset: start, 37 offset: start,
38 limit: count, 38 limit: count,
39 order: [ getSortOnModel(sort.sortModel, sort.sortValue) ], 39 order: getSortOnModel(sort.sortModel, sort.sortValue),
40 include: [ { model: VideoModel } ] 40 include: [ { model: VideoModel } ]
41 } 41 }
42 42