Fix: wrong info displayed when quickly navigate from a channel to another (#2259)
* Fix: wrong info displayed when you quickly navigate from a channel to another (Invidious) * localapi * id
This commit is contained in:
parent
8e0f6580d6
commit
a9dc9c028d
|
@ -249,7 +249,12 @@ export default Vue.extend({
|
||||||
|
|
||||||
getChannelInfoLocal: function () {
|
getChannelInfoLocal: function () {
|
||||||
this.apiUsed = 'local'
|
this.apiUsed = 'local'
|
||||||
ytch.getChannelInfo({ channelId: this.id }).then((response) => {
|
const expectedId = this.id
|
||||||
|
ytch.getChannelInfo({ channelId: expectedId }).then((response) => {
|
||||||
|
if (expectedId !== this.id) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
this.id = response.authorId
|
this.id = response.authorId
|
||||||
this.channelName = response.author
|
this.channelName = response.author
|
||||||
document.title = `${this.channelName} - ${process.env.PRODUCT_NAME}`
|
document.title = `${this.channelName} - ${process.env.PRODUCT_NAME}`
|
||||||
|
@ -308,7 +313,12 @@ export default Vue.extend({
|
||||||
|
|
||||||
getChannelVideosLocal: function () {
|
getChannelVideosLocal: function () {
|
||||||
this.isElementListLoading = true
|
this.isElementListLoading = true
|
||||||
ytch.getChannelVideos({ channelId: this.id, sortBy: this.videoSortBy }).then((response) => {
|
const expectedId = this.id
|
||||||
|
ytch.getChannelVideos({ channelId: expectedId, sortBy: this.videoSortBy }).then((response) => {
|
||||||
|
if (expectedId !== this.id) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
this.latestVideos = response.items
|
this.latestVideos = response.items
|
||||||
this.videoContinuationString = response.continuation
|
this.videoContinuationString = response.continuation
|
||||||
this.isElementListLoading = false
|
this.isElementListLoading = false
|
||||||
|
@ -354,7 +364,12 @@ export default Vue.extend({
|
||||||
this.isLoading = true
|
this.isLoading = true
|
||||||
this.apiUsed = 'invidious'
|
this.apiUsed = 'invidious'
|
||||||
|
|
||||||
this.invidiousGetChannelInfo(this.id).then((response) => {
|
const expectedId = this.id
|
||||||
|
this.invidiousGetChannelInfo(expectedId).then((response) => {
|
||||||
|
if (expectedId !== this.id) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
console.log(response)
|
console.log(response)
|
||||||
this.channelName = response.author
|
this.channelName = response.author
|
||||||
document.title = `${this.channelName} - ${process.env.PRODUCT_NAME}`
|
document.title = `${this.channelName} - ${process.env.PRODUCT_NAME}`
|
||||||
|
@ -422,7 +437,12 @@ export default Vue.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
getPlaylistsLocal: function () {
|
getPlaylistsLocal: function () {
|
||||||
ytch.getChannelPlaylistInfo({ channelId: this.id, sortBy: this.playlistSortBy }).then((response) => {
|
const expectedId = this.id
|
||||||
|
ytch.getChannelPlaylistInfo({ channelId: expectedId, sortBy: this.playlistSortBy }).then((response) => {
|
||||||
|
if (expectedId !== this.id) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
console.log(response)
|
console.log(response)
|
||||||
this.latestPlaylists = response.items.map((item) => {
|
this.latestPlaylists = response.items.map((item) => {
|
||||||
item.proxyThumbnail = false
|
item.proxyThumbnail = false
|
||||||
|
|
Loading…
Reference in New Issue