diff options
author | Chocobozzz <me@florianbigard.com> | 2018-07-25 17:18:46 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-07-25 17:18:46 +0200 |
commit | d59cba295b7f2ead41e1828c1567e60942476367 (patch) | |
tree | 2df3f92a07d7672268362bf9d51f2d685a91f0d2 /client/src/app/videos | |
parent | 87bec1051b9706b4ae1efbd92e4d974c01d98c51 (diff) | |
download | PeerTube-d59cba295b7f2ead41e1828c1567e60942476367.tar.gz PeerTube-d59cba295b7f2ead41e1828c1567e60942476367.tar.zst PeerTube-d59cba295b7f2ead41e1828c1567e60942476367.zip |
category parma -> categoryOneOf (videos list)
Diffstat (limited to 'client/src/app/videos')
3 files changed, 6 insertions, 6 deletions
diff --git a/client/src/app/videos/video-list/video-local.component.ts b/client/src/app/videos/video-list/video-local.component.ts index de460ea60..c91c639ca 100644 --- a/client/src/app/videos/video-list/video-local.component.ts +++ b/client/src/app/videos/video-list/video-local.component.ts | |||
@@ -50,10 +50,10 @@ export class VideoLocalComponent extends AbstractVideoList implements OnInit, On | |||
50 | getVideosObservable (page: number) { | 50 | getVideosObservable (page: number) { |
51 | const newPagination = immutableAssign(this.pagination, { currentPage: page }) | 51 | const newPagination = immutableAssign(this.pagination, { currentPage: page }) |
52 | 52 | ||
53 | return this.videoService.getVideos(newPagination, this.sort, this.filter, this.category) | 53 | return this.videoService.getVideos(newPagination, this.sort, this.filter, this.categoryOneOf) |
54 | } | 54 | } |
55 | 55 | ||
56 | generateSyndicationList () { | 56 | generateSyndicationList () { |
57 | this.syndicationItems = this.videoService.getVideoFeedUrls(this.sort, this.filter, this.category) | 57 | this.syndicationItems = this.videoService.getVideoFeedUrls(this.sort, this.filter, this.categoryOneOf) |
58 | } | 58 | } |
59 | } | 59 | } |
diff --git a/client/src/app/videos/video-list/video-recently-added.component.ts b/client/src/app/videos/video-list/video-recently-added.component.ts index 75688731d..ac1fcfff3 100644 --- a/client/src/app/videos/video-list/video-recently-added.component.ts +++ b/client/src/app/videos/video-list/video-recently-added.component.ts | |||
@@ -48,10 +48,10 @@ export class VideoRecentlyAddedComponent extends AbstractVideoList implements On | |||
48 | getVideosObservable (page: number) { | 48 | getVideosObservable (page: number) { |
49 | const newPagination = immutableAssign(this.pagination, { currentPage: page }) | 49 | const newPagination = immutableAssign(this.pagination, { currentPage: page }) |
50 | 50 | ||
51 | return this.videoService.getVideos(newPagination, this.sort, undefined, this.category) | 51 | return this.videoService.getVideos(newPagination, this.sort, undefined, this.categoryOneOf) |
52 | } | 52 | } |
53 | 53 | ||
54 | generateSyndicationList () { | 54 | generateSyndicationList () { |
55 | this.syndicationItems = this.videoService.getVideoFeedUrls(this.sort, undefined, this.category) | 55 | this.syndicationItems = this.videoService.getVideoFeedUrls(this.sort, undefined, this.categoryOneOf) |
56 | } | 56 | } |
57 | } | 57 | } |
diff --git a/client/src/app/videos/video-list/video-trending.component.ts b/client/src/app/videos/video-list/video-trending.component.ts index 3738b95b1..68bb70265 100644 --- a/client/src/app/videos/video-list/video-trending.component.ts +++ b/client/src/app/videos/video-list/video-trending.component.ts | |||
@@ -47,10 +47,10 @@ export class VideoTrendingComponent extends AbstractVideoList implements OnInit, | |||
47 | 47 | ||
48 | getVideosObservable (page: number) { | 48 | getVideosObservable (page: number) { |
49 | const newPagination = immutableAssign(this.pagination, { currentPage: page }) | 49 | const newPagination = immutableAssign(this.pagination, { currentPage: page }) |
50 | return this.videoService.getVideos(newPagination, this.sort, undefined, this.category) | 50 | return this.videoService.getVideos(newPagination, this.sort, undefined, this.categoryOneOf) |
51 | } | 51 | } |
52 | 52 | ||
53 | generateSyndicationList () { | 53 | generateSyndicationList () { |
54 | this.syndicationItems = this.videoService.getVideoFeedUrls(this.sort, undefined, this.category) | 54 | this.syndicationItems = this.videoService.getVideoFeedUrls(this.sort, undefined, this.categoryOneOf) |
55 | } | 55 | } |
56 | } | 56 | } |