diff options
Diffstat (limited to 'server/models/video')
-rw-r--r-- | server/models/video/video-playlist.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/models/video/video-playlist.ts b/server/models/video/video-playlist.ts index 581179640..b020bfa45 100644 --- a/server/models/video/video-playlist.ts +++ b/server/models/video/video-playlist.ts | |||
@@ -16,7 +16,7 @@ import { | |||
16 | UpdatedAt | 16 | UpdatedAt |
17 | } from 'sequelize-typescript' | 17 | } from 'sequelize-typescript' |
18 | import { VideoPlaylistPrivacy } from '../../../shared/models/videos/playlist/video-playlist-privacy.model' | 18 | import { VideoPlaylistPrivacy } from '../../../shared/models/videos/playlist/video-playlist-privacy.model' |
19 | import { buildServerIdsFollowedBy, buildWhereIdOrUUID, getSort, isOutdated, throwIfNotValid } from '../utils' | 19 | import { buildServerIdsFollowedBy, buildWhereIdOrUUID, getPlaylistSort, getPlaylistSort, isOutdated, throwIfNotValid } from '../utils' |
20 | import { | 20 | import { |
21 | isVideoPlaylistDescriptionValid, | 21 | isVideoPlaylistDescriptionValid, |
22 | isVideoPlaylistNameValid, | 22 | isVideoPlaylistNameValid, |
@@ -312,7 +312,7 @@ export class VideoPlaylistModel extends Model<VideoPlaylistModel> { | |||
312 | const query = { | 312 | const query = { |
313 | offset: options.start, | 313 | offset: options.start, |
314 | limit: options.count, | 314 | limit: options.count, |
315 | order: getSort(options.sort) | 315 | order: getPlaylistSort(options.sort) |
316 | } | 316 | } |
317 | 317 | ||
318 | const scopes: (string | ScopeOptions)[] = [ | 318 | const scopes: (string | ScopeOptions)[] = [ |