Fix banner URL in Channel View

This commit is contained in:
Preston 2020-06-23 23:15:14 -04:00
parent 0568b95d94
commit 56fd7fbaa5
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ export default Vue.extend({
this.channelName = response.author
this.subCount = response.subscriberCount
this.thumbnailUrl = response.authorThumbnails[2].url
this.bannerUrl = response.authorBanners[response.authorBanners.length - 1].url
this.bannerUrl = `https://${response.authorBanners[response.authorBanners.length - 1].url}`
this.channelDescription = response.description
this.relatedChannels = response.relatedChannels
this.isLoading = false