From 24313b53cf5b6fb37e8454175d91074c0f644cee Mon Sep 17 00:00:00 2001 From: vapormusic Date: Wed, 16 Feb 2022 13:04:40 +0700 Subject: [PATCH] revert --- src/renderer/index.js | 8 ++++---- src/renderer/views/components/sidebar-playlist.ejs | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/renderer/index.js b/src/renderer/index.js index 6ac0715b..f4a97d46 100644 --- a/src/renderer/index.js +++ b/src/renderer/index.js @@ -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) } } ; diff --git a/src/renderer/views/components/sidebar-playlist.ejs b/src/renderer/views/components/sidebar-playlist.ejs index bfe0edf6..83df7072 100644 --- a/src/renderer/views/components/sidebar-playlist.ejs +++ b/src/renderer/views/components/sidebar-playlist.ejs @@ -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