X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fshared-video-playlist%2Fvideo-playlist.model.ts;h=5b6ba9dbf2bc1d089f94d71b2f2c871a2b9ee1e8;hb=33eb19e5199cc9fa4d73c6675c97508e3e072ef9;hp=9bec16d7768190d39b235672e5e3c20a02399c5d;hpb=c418d483004dfbae9ea38d54aa1577db46d34a8a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/shared-video-playlist/video-playlist.model.ts b/client/src/app/shared/shared-video-playlist/video-playlist.model.ts index 9bec16d77..5b6ba9dbf 100644 --- a/client/src/app/shared/shared-video-playlist/video-playlist.model.ts +++ b/client/src/app/shared/shared-video-playlist/video-playlist.model.ts @@ -37,10 +37,8 @@ export class VideoPlaylist implements ServerVideoPlaylist { embedUrl: string ownerBy: string - ownerAvatarUrl: string videoChannelBy?: string - videoChannelAvatarUrl?: string private thumbnailVersion: number private originThumbnailUrl: string @@ -78,12 +76,10 @@ export class VideoPlaylist implements ServerVideoPlaylist { this.ownerAccount = hash.ownerAccount this.ownerBy = Actor.CREATE_BY_STRING(hash.ownerAccount.name, hash.ownerAccount.host) - this.ownerAvatarUrl = Account.GET_ACTOR_AVATAR_URL(this.ownerAccount) if (hash.videoChannel) { this.videoChannel = hash.videoChannel this.videoChannelBy = Actor.CREATE_BY_STRING(hash.videoChannel.name, hash.videoChannel.host) - this.videoChannelAvatarUrl = VideoChannel.GET_ACTOR_AVATAR_URL(this.videoChannel) } this.privacy.label = peertubeTranslate(this.privacy.label, translations)