diff --git a/src/renderer/views/Channel/Channel.js b/src/renderer/views/Channel/Channel.js index bb3d03583..6f5c97346 100644 --- a/src/renderer/views/Channel/Channel.js +++ b/src/renderer/views/Channel/Channel.js @@ -259,6 +259,14 @@ export default Vue.extend({ this.thumbnailUrl = response.authorThumbnails[2].url this.channelDescription = autolinker.link(response.description) this.relatedChannels = response.relatedChannels.items + this.relatedChannels.forEach(relatedChannel => { + relatedChannel.authorThumbnails.map(thumbnail => { + if (!thumbnail.url.includes('https')) { + thumbnail.url = `https:${thumbnail.url}` + } + return thumbnail + }) + }) if (response.authorBanners !== null) { const bannerUrl = response.authorBanners[response.authorBanners.length - 1].url