diff --git a/publish/changeLog.md b/publish/changeLog.md index 7c47c352..4cce1f79 100644 --- a/publish/changeLog.md +++ b/publish/changeLog.md @@ -1,3 +1,4 @@ #### 修复 - 修复QQ源歌单无法翻页Bug +- 修复默认列表没有创建时无法显示收藏列表的Bug diff --git a/src/renderer/App.vue b/src/renderer/App.vue index b4da845e..17d9ae06 100644 --- a/src/renderer/App.vue +++ b/src/renderer/App.vue @@ -164,8 +164,7 @@ export default { initPlayList() { let defaultList = this.electronStore.get('list.defaultList') let loveList = this.electronStore.get('list.loveList') - // console.log(defaultList) - if (defaultList) this.initList({ defaultList, loveList }) + this.initList({ defaultList, loveList }) }, initDownloadList() { let downloadList = this.electronStore.get('download.list')