Fix thumbnail URL in ft-list-channel and fix visual issue with watch-video-playlist

This commit is contained in:
Preston 2020-12-06 21:02:27 -05:00
parent 5b27d6b1c3
commit 6c3212eaa8
1 changed files with 5 additions and 0 deletions

View File

@ -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) {