X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bmy-library%2Fmy-video-playlists%2Fmy-video-playlist-create.component.ts;h=8606a875a4d5f43d4f21f25b6c66f446289e0bed;hb=9556ce48e7d0aaed35753d982327bc60e1284894;hp=5abea54b0a2a5c028924954400cf05f551d0b355;hpb=9514bb3bc0534c2a8c5ffefac013a1b8d3717c0a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts b/client/src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts index 5abea54b0..8606a875a 100644 --- a/client/src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts +++ b/client/src/app/+my-library/my-video-playlists/my-video-playlist-create.component.ts @@ -1,7 +1,7 @@ import { Component, OnInit } from '@angular/core' import { Router } from '@angular/router' import { AuthService, Notifier, ServerService } from '@app/core' -import { populateAsyncUserVideoChannels } from '@app/helpers' +import { listUserChannels } from '@app/helpers' import { setPlaylistChannelValidator, VIDEO_PLAYLIST_CHANNEL_ID_VALIDATOR, @@ -46,8 +46,8 @@ export class MyVideoPlaylistCreateComponent extends MyVideoPlaylistEdit implemen setPlaylistChannelValidator(this.form.get('videoChannelId'), privacy) }) - populateAsyncUserVideoChannels(this.authService, this.userVideoChannels) - .catch(err => console.error('Cannot populate user video channels.', err)) + listUserChannels(this.authService) + .subscribe(channels => this.userVideoChannels = channels) this.serverService.getVideoPlaylistPrivacies() .subscribe(videoPlaylistPrivacies => {