From 56fd7fbaa549c970458cb800b32f80f36e268932 Mon Sep 17 00:00:00 2001 From: Preston Date: Tue, 23 Jun 2020 23:15:14 -0400 Subject: [PATCH] Fix banner URL in Channel View --- src/renderer/views/Channel/Channel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/views/Channel/Channel.js b/src/renderer/views/Channel/Channel.js index 2f7e6897..bb49abfa 100644 --- a/src/renderer/views/Channel/Channel.js +++ b/src/renderer/views/Channel/Channel.js @@ -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