aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-11-18 14:21:26 +0100
committerChocobozzz <me@florianbigard.com>2020-11-18 14:21:26 +0100
commitff2cac9fa361a3c5489078f441ed54230c045971 (patch)
tree4b3a6fb8b9f4ed00694bb14132e0b12a82d88509 /client/src/app
parent021c42657fe647e0561634f4a3bde3bf5644cac8 (diff)
downloadPeerTube-ff2cac9fa361a3c5489078f441ed54230c045971.tar.gz
PeerTube-ff2cac9fa361a3c5489078f441ed54230c045971.tar.zst
PeerTube-ff2cac9fa361a3c5489078f441ed54230c045971.zip
Fix accept ownership change accept
Diffstat (limited to 'client/src/app')
-rw-r--r--client/src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts b/client/src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts
index 587a455f0..51e9b2a6d 100644
--- a/client/src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts
+++ b/client/src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.ts
@@ -1,3 +1,4 @@
1import { switchMap } from 'rxjs/operators'
1import { Component, ElementRef, EventEmitter, OnInit, Output, ViewChild } from '@angular/core' 2import { Component, ElementRef, EventEmitter, OnInit, Output, ViewChild } from '@angular/core'
2import { AuthService, Notifier } from '@app/core' 3import { AuthService, Notifier } from '@app/core'
3import { OWNERSHIP_CHANGE_CHANNEL_VALIDATOR } from '@app/shared/form-validators/video-ownership-change-validators' 4import { OWNERSHIP_CHANGE_CHANNEL_VALIDATOR } from '@app/shared/form-validators/video-ownership-change-validators'
@@ -36,7 +37,8 @@ export class MyAcceptOwnershipComponent extends FormReactive implements OnInit {
36 ngOnInit () { 37 ngOnInit () {
37 this.videoChannels = [] 38 this.videoChannels = []
38 39
39 this.videoChannelService.listAccountVideoChannels(this.authService.getUser().account) 40 this.authService.userInformationLoaded
41 .pipe(switchMap(() => this.videoChannelService.listAccountVideoChannels(this.authService.getUser().account)))
40 .subscribe(videoChannels => this.videoChannels = videoChannels.data) 42 .subscribe(videoChannels => this.videoChannels = videoChannels.data)
41 43
42 this.buildForm({ 44 this.buildForm({