Fix banner URL in Channel View
This commit is contained in:
parent
0568b95d94
commit
56fd7fbaa5
|
@ -152,7 +152,7 @@ export default Vue.extend({
|
||||||
this.channelName = response.author
|
this.channelName = response.author
|
||||||
this.subCount = response.subscriberCount
|
this.subCount = response.subscriberCount
|
||||||
this.thumbnailUrl = response.authorThumbnails[2].url
|
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.channelDescription = response.description
|
||||||
this.relatedChannels = response.relatedChannels
|
this.relatedChannels = response.relatedChannels
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
|
|
Loading…
Reference in New Issue