[Fix] Invidious not used for channels icons in search (#1477)
* fix channel icons * Add comment Co-authored-by: PikachuEXE <pikachuexe@gmail.com> Co-authored-by: Preston <freetubeapp@protonmail.com> Co-authored-by: PikachuEXE <pikachuexe@gmail.com>
This commit is contained in:
parent
3cf18b9f2d
commit
1390276d55
|
@ -66,7 +66,16 @@ export default Vue.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
parseInvidiousData: function () {
|
parseInvidiousData: function () {
|
||||||
this.thumbnail = this.data.authorThumbnails[2].url.replace('https://yt3.ggpht.com', `${this.currentInvidiousInstance}/ggpht/`)
|
// Can be prefixed with `https://` or `//` (protocol relative)
|
||||||
|
let thumbnailUrl = this.data.authorThumbnails[2].url
|
||||||
|
|
||||||
|
// Update protocol relative URL to be prefixed with `https://`
|
||||||
|
if (thumbnailUrl.startsWith('//')) {
|
||||||
|
thumbnailUrl = `https:${thumbnailUrl}`
|
||||||
|
}
|
||||||
|
|
||||||
|
this.thumbnail = thumbnailUrl.replace('https://yt3.ggpht.com', `${this.currentInvidiousInstance}/ggpht/`)
|
||||||
|
|
||||||
this.channelName = this.data.author
|
this.channelName = this.data.author
|
||||||
this.id = this.data.authorId
|
this.id = this.data.authorId
|
||||||
if (this.hideChannelSubscriptions) {
|
if (this.hideChannelSubscriptions) {
|
||||||
|
|
Loading…
Reference in New Issue