Fix thumbnail URL in ft-list-channel and fix visual issue with watch-video-playlist
This commit is contained in:
parent
5b27d6b1c3
commit
6c3212eaa8
|
@ -44,6 +44,11 @@ export default Vue.extend({
|
|||
methods: {
|
||||
parseLocalData: function () {
|
||||
this.thumbnail = this.data.avatar
|
||||
|
||||
if (!this.thumbnail.includes('https:')) {
|
||||
this.thumbnail = `https:${this.thumbnail}`
|
||||
}
|
||||
|
||||
this.channelName = this.data.name
|
||||
this.id = this.data.channel_id
|
||||
if (this.hideChannelSubscriptions) {
|
||||
|
|
Loading…
Reference in New Issue