Fix loading for cached subscriptions
This commit is contained in:
parent
f895703446
commit
1bf2e51afc
|
@ -115,25 +115,27 @@ export default Vue.extend({
|
||||||
if (dataLimit !== null) {
|
if (dataLimit !== null) {
|
||||||
this.dataLimit = dataLimit
|
this.dataLimit = dataLimit
|
||||||
}
|
}
|
||||||
setTimeout(async () => {
|
|
||||||
if (this.profileSubscriptions.videoList.length === 0) {
|
|
||||||
this.getSubscriptions()
|
|
||||||
} else {
|
|
||||||
const subscriptionList = JSON.parse(JSON.stringify(this.profileSubscriptions))
|
|
||||||
if (this.hideWatchedSubs) {
|
|
||||||
this.videoList = await Promise.all(subscriptionList.videoList.filter((video) => {
|
|
||||||
const historyIndex = this.historyCache.findIndex((x) => {
|
|
||||||
return x.videoId === video.videoId
|
|
||||||
})
|
|
||||||
|
|
||||||
return historyIndex === -1
|
if (this.profileSubscriptions.videoList.length !== 0) {
|
||||||
}))
|
const subscriptionList = JSON.parse(JSON.stringify(this.profileSubscriptions))
|
||||||
} else {
|
if (this.hideWatchedSubs) {
|
||||||
this.videoList = subscriptionList.videoList
|
this.videoList = await Promise.all(subscriptionList.videoList.filter((video) => {
|
||||||
}
|
const historyIndex = this.historyCache.findIndex((x) => {
|
||||||
this.isLoading = false
|
return x.videoId === video.videoId
|
||||||
|
})
|
||||||
|
|
||||||
|
return historyIndex === -1
|
||||||
|
}))
|
||||||
|
} else {
|
||||||
|
this.videoList = subscriptionList.videoList
|
||||||
}
|
}
|
||||||
}, 200)
|
|
||||||
|
this.isLoading = false
|
||||||
|
} else {
|
||||||
|
setTimeout(async () => {
|
||||||
|
this.getSubscriptions()
|
||||||
|
}, 200)
|
||||||
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getSubscriptions: function () {
|
getSubscriptions: function () {
|
||||||
|
|
Loading…
Reference in New Issue