aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/video-list
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-08-17 11:27:47 +0200
committerChocobozzz <me@florianbigard.com>2021-08-17 14:01:45 +0200
commit1378c0d343028f3d40d7d795422684ab9e6a1599 (patch)
tree08062b84a38a7e2dfe0aa674e7ca8e1b7321044e /client/src/app/+videos/video-list
parentc186a67f90203af6bfa434f026efdc99193bcd65 (diff)
downloadPeerTube-1378c0d343028f3d40d7d795422684ab9e6a1599.tar.gz
PeerTube-1378c0d343028f3d40d7d795422684ab9e6a1599.tar.zst
PeerTube-1378c0d343028f3d40d7d795422684ab9e6a1599.zip
Fix client lint
Diffstat (limited to 'client/src/app/+videos/video-list')
-rw-r--r--client/src/app/+videos/video-list/overview/video-overview.component.ts8
-rw-r--r--client/src/app/+videos/video-list/video-user-subscriptions.component.ts8
2 files changed, 8 insertions, 8 deletions
diff --git a/client/src/app/+videos/video-list/overview/video-overview.component.ts b/client/src/app/+videos/video-list/overview/video-overview.component.ts
index 14532ca1e..b32e8f381 100644
--- a/client/src/app/+videos/video-list/overview/video-overview.component.ts
+++ b/client/src/app/+videos/video-list/overview/video-overview.component.ts
@@ -68,8 +68,8 @@ export class VideoOverviewComponent implements OnInit {
68 this.isLoading = true 68 this.isLoading = true
69 69
70 this.overviewService.getVideosOverview(this.currentPage) 70 this.overviewService.getVideosOverview(this.currentPage)
71 .subscribe( 71 .subscribe({
72 overview => { 72 next: overview => {
73 this.isLoading = false 73 this.isLoading = false
74 74
75 if (overview.tags.length === 0 && overview.channels.length === 0 && overview.categories.length === 0) { 75 if (overview.tags.length === 0 && overview.channels.length === 0 && overview.categories.length === 0) {
@@ -85,10 +85,10 @@ export class VideoOverviewComponent implements OnInit {
85 this.overviews.push(overview) 85 this.overviews.push(overview)
86 }, 86 },
87 87
88 err => { 88 error: err => {
89 this.notifier.error(err.message) 89 this.notifier.error(err.message)
90 this.isLoading = false 90 this.isLoading = false
91 } 91 }
92 ) 92 })
93 } 93 }
94} 94}
diff --git a/client/src/app/+videos/video-list/video-user-subscriptions.component.ts b/client/src/app/+videos/video-list/video-user-subscriptions.component.ts
index 6aabb93a5..a1498e797 100644
--- a/client/src/app/+videos/video-list/video-user-subscriptions.component.ts
+++ b/client/src/app/+videos/video-list/video-user-subscriptions.component.ts
@@ -56,8 +56,8 @@ export class VideoUserSubscriptionsComponent extends AbstractVideoList implement
56 56
57 this.authService.userInformationLoaded 57 this.authService.userInformationLoaded
58 .pipe(switchMap(() => this.scopedTokensService.getScopedTokens())) 58 .pipe(switchMap(() => this.scopedTokensService.getScopedTokens()))
59 .subscribe( 59 .subscribe({
60 tokens => { 60 next: tokens => {
61 const feeds = this.videoService.getVideoSubscriptionFeedUrls(user.account.id, tokens.feedToken) 61 const feeds = this.videoService.getVideoSubscriptionFeedUrls(user.account.id, tokens.feedToken)
62 feedUrl = feedUrl + feeds.find(f => f.format === FeedFormat.RSS).url 62 feedUrl = feedUrl + feeds.find(f => f.format === FeedFormat.RSS).url
63 63
@@ -74,10 +74,10 @@ export class VideoUserSubscriptionsComponent extends AbstractVideoList implement
74 }) 74 })
75 }, 75 },
76 76
77 err => { 77 error: err => {
78 this.notifier.error(err.message) 78 this.notifier.error(err.message)
79 } 79 }
80 ) 80 })
81 } 81 }
82 82
83 ngOnDestroy () { 83 ngOnDestroy () {