修复QQ源歌单热门标签歌单列表无法加载问题

pull/166/head
lyswhut 2020-02-15 12:00:53 +08:00
parent 30e66473db
commit e58471fe37
2 changed files with 3 additions and 2 deletions

View File

@ -17,7 +17,8 @@
- 修复大窗口时设置的音乐来源选项不换行的问题
- 修复某些情况下暂停任务会自动开始任务的问题
- 修复移除暂停、错误的任务时不删除未下载完成的文件的问题
- 修复酷狗歌单热门标签列表无法加载问题
- 修复酷狗源歌单热门标签歌单列表无法加载问题
- 修复QQ源歌单热门标签歌单列表无法加载问题
### 其他

View File

@ -84,7 +84,7 @@ export default {
let result = tagHtml.match(this.regexps.hotTag)
if (!result) return
hotTags.push({
id: result[1],
id: parseInt(result[1]),
name: result[2],
source: 'tx',
})