revert
This commit is contained in:
parent
b7418b9651
commit
24313b53cf
2 changed files with 5 additions and 5 deletions
|
@ -555,7 +555,7 @@ const app = new Vue({
|
|||
}
|
||||
).then(() => {
|
||||
if (this.page == 'playlist_' + this.showingPlaylist.id) {
|
||||
this.getPlaylistFromID(this.showingPlaylist.id, true)
|
||||
this.getPlaylistFromID(this.showingPlaylist.id)
|
||||
}
|
||||
})
|
||||
},
|
||||
|
@ -997,7 +997,7 @@ const app = new Vue({
|
|||
console.log(res)
|
||||
self.appRoute(`playlist_` + res.id);
|
||||
self.showingPlaylist = [];
|
||||
self.getPlaylistFromID(app.page.substring(9), true)
|
||||
self.getPlaylistFromID(app.page.substring(9))
|
||||
self.playlists.listing.push({
|
||||
id: res.id,
|
||||
attributes: {
|
||||
|
@ -1572,14 +1572,14 @@ const app = new Vue({
|
|||
if (kind == "appleCurator") {
|
||||
app.appleCurator = a.data.data[0]
|
||||
} else {
|
||||
this.getPlaylistContinuous(a, true)
|
||||
this.getPlaylistContinuous(a)
|
||||
}
|
||||
}
|
||||
} finally {
|
||||
if (kind == "appleCurator") {
|
||||
app.appleCurator = a.data.data[0]
|
||||
} else {
|
||||
this.getPlaylistContinuous(a, true)
|
||||
this.getPlaylistContinuous(a)
|
||||
}
|
||||
}
|
||||
;
|
||||
|
|
|
@ -189,7 +189,7 @@
|
|||
openPlaylist(item) {
|
||||
this.$root.appRoute(`playlist_` + item.id);
|
||||
this.$root.showingPlaylist = [];
|
||||
this.$root.getPlaylistFromID(this.$root.page.substring(9), true)
|
||||
this.$root.getPlaylistFromID(this.$root.page.substring(9))
|
||||
},
|
||||
getPlaylistChildren(item) {
|
||||
let self = this
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue