Fix max pagination in find in bulk

pull/4477/head
Chocobozzz 2021-10-20 09:25:13 +02:00
parent 978c87e7f5
commit 05c114f5b4
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 3 additions and 3 deletions

View File

@ -91,19 +91,19 @@ export class FindInBulkService {
private getVideosInBulk (uuids: string[]) { private getVideosInBulk (uuids: string[]) {
logger('Fetching videos %s.', uuids.join(', ')) logger('Fetching videos %s.', uuids.join(', '))
return this.searchService.searchVideos({ uuids }) return this.searchService.searchVideos({ uuids, componentPagination: { itemsPerPage: uuids.length, currentPage: 1 } })
} }
private getChannelsInBulk (handles: string[]) { private getChannelsInBulk (handles: string[]) {
logger('Fetching channels %s.', handles.join(', ')) logger('Fetching channels %s.', handles.join(', '))
return this.searchService.searchVideoChannels({ handles }) return this.searchService.searchVideoChannels({ handles, componentPagination: { itemsPerPage: handles.length, currentPage: 1 } })
} }
private getPlaylistsInBulk (uuids: string[]) { private getPlaylistsInBulk (uuids: string[]) {
logger('Fetching playlists %s.', uuids.join(', ')) logger('Fetching playlists %s.', uuids.join(', '))
return this.searchService.searchVideoPlaylists({ uuids }) return this.searchService.searchVideoPlaylists({ uuids, componentPagination: { itemsPerPage: uuids.length, currentPage: 1 } })
} }
private buildBulkObservableObject <P extends number | string, R> (bulkGet: (params: P[]) => Observable<R>) { private buildBulkObservableObject <P extends number | string, R> (bulkGet: (params: P[]) => Observable<R>) {