Remove unused sort param

This commit is contained in:
Chocobozzz 2021-04-06 10:08:21 +02:00
parent 8e286cdca4
commit 0df302ca8d
No known key found for this signature in database
GPG Key ID: 583A612D890159BE

View File

@ -93,7 +93,7 @@ export class MyVideosComponent implements OnInit, DisableForReuseHook {
this.videosSelection.enabledForReuse()
}
getVideosObservable (page: number, sort: VideoSortField) {
getVideosObservable (page: number) {
const newPagination = immutableAssign(this.pagination, { currentPage: page })
return this.videoService.getMyVideos(newPagination, this.sort, this.videosSearch)