diff options
author | Chocobozzz <me@florianbigard.com> | 2021-10-22 16:39:37 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-10-22 16:40:48 +0200 |
commit | 0c691a182c7aeaf0d0e6f7f71d46d6f558e2843b (patch) | |
tree | 8e01303d264792e114c20a0d1d530df48841ee6f /server/models/video/video.ts | |
parent | 532e6a4172154716d6c6ab2a7f715625d600987c (diff) | |
download | PeerTube-0c691a182c7aeaf0d0e6f7f71d46d6f558e2843b.tar.gz PeerTube-0c691a182c7aeaf0d0e6f7f71d46d6f558e2843b.tar.zst PeerTube-0c691a182c7aeaf0d0e6f7f71d46d6f558e2843b.zip |
Fix sequelize order typings
Diffstat (limited to 'server/models/video/video.ts')
-rw-r--r-- | server/models/video/video.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/models/video/video.ts b/server/models/video/video.ts index a62ae2f23..b5c46c86c 100644 --- a/server/models/video/video.ts +++ b/server/models/video/video.ts | |||
@@ -864,7 +864,7 @@ export class VideoModel extends Model<Partial<AttributesOnly<VideoModel>>> { | |||
864 | distinct: true, | 864 | distinct: true, |
865 | offset: start, | 865 | offset: start, |
866 | limit: count, | 866 | limit: count, |
867 | order: getVideoSort('-createdAt', [ 'Tags', 'name', 'ASC' ] as any), // FIXME: sequelize typings | 867 | order: getVideoSort('-createdAt', [ 'Tags', 'name', 'ASC' ]), |
868 | where: { | 868 | where: { |
869 | id: { | 869 | id: { |
870 | [Op.in]: Sequelize.literal('(' + rawQuery + ')') | 870 | [Op.in]: Sequelize.literal('(' + rawQuery + ')') |