diff options
author | Chocobozzz <me@florianbigard.com> | 2021-02-19 13:47:37 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-02-19 13:47:37 +0100 |
commit | 07f81d9deedf4921b8518c2d2b16043167b4c5d5 (patch) | |
tree | e333622a6686d637612a2f552aa0c64503163fe5 /client/src/app/+videos | |
parent | 300cb723eb9bd219e6d381c57a8a6a860563bbbb (diff) | |
download | PeerTube-07f81d9deedf4921b8518c2d2b16043167b4c5d5.tar.gz PeerTube-07f81d9deedf4921b8518c2d2b16043167b4c5d5.tar.zst PeerTube-07f81d9deedf4921b8518c2d2b16043167b4c5d5.zip |
Fix NSFW policy on account/channel videos
Diffstat (limited to 'client/src/app/+videos')
3 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/+videos/video-list/trending/video-trending.component.ts b/client/src/app/+videos/video-list/trending/video-trending.component.ts index 6128c4acd..c11f0da9d 100644 --- a/client/src/app/+videos/video-list/trending/video-trending.component.ts +++ b/client/src/app/+videos/video-list/trending/video-trending.component.ts | |||
@@ -19,7 +19,7 @@ export class VideoTrendingComponent extends AbstractVideoList implements OnInit, | |||
19 | titlePage: string | 19 | titlePage: string |
20 | defaultSort: VideoSortField = '-trending' | 20 | defaultSort: VideoSortField = '-trending' |
21 | 21 | ||
22 | useUserVideoPreferences = true | 22 | loadUserVideoPreferences = true |
23 | 23 | ||
24 | private algorithmChangeSub: Subscription | 24 | private algorithmChangeSub: Subscription |
25 | 25 | ||
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 af7eecff4..4be8cd6b5 100644 --- a/client/src/app/+videos/video-list/video-local.component.ts +++ b/client/src/app/+videos/video-list/video-local.component.ts | |||
@@ -17,7 +17,7 @@ export class VideoLocalComponent extends AbstractVideoList implements OnInit, On | |||
17 | sort = '-publishedAt' as VideoSortField | 17 | sort = '-publishedAt' as VideoSortField |
18 | filter: VideoFilter = 'local' | 18 | filter: VideoFilter = 'local' |
19 | 19 | ||
20 | useUserVideoPreferences = true | 20 | loadUserVideoPreferences = true |
21 | 21 | ||
22 | constructor ( | 22 | constructor ( |
23 | protected router: Router, | 23 | protected router: Router, |
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 2f4908074..506f92d25 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 | |||
@@ -17,7 +17,7 @@ export class VideoRecentlyAddedComponent extends AbstractVideoList implements On | |||
17 | sort: VideoSortField = '-publishedAt' | 17 | sort: VideoSortField = '-publishedAt' |
18 | groupByDate = true | 18 | groupByDate = true |
19 | 19 | ||
20 | useUserVideoPreferences = true | 20 | loadUserVideoPreferences = true |
21 | 21 | ||
22 | constructor ( | 22 | constructor ( |
23 | protected route: ActivatedRoute, | 23 | protected route: ActivatedRoute, |