mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-22 06:49:42 +08:00
fix: 云盘加载歌曲数增加至1000 (#1242)
FIXME: 超过 1000 的部分仍无法显示 Fix #940 Fix #1024 Fix #1240
This commit is contained in:
parent
42f3da9b37
commit
585691aa0f
|
@ -156,7 +156,8 @@ export default {
|
|||
},
|
||||
fetchCloudDisk: ({ commit }) => {
|
||||
if (!isAccountLoggedIn()) return;
|
||||
return cloudDisk().then(result => {
|
||||
// FIXME: #1242
|
||||
return cloudDisk({ limit: 1000 }).then(result => {
|
||||
if (result.data) {
|
||||
commit('updateLikedXXX', {
|
||||
name: 'cloudDisk',
|
||||
|
|
Loading…
Reference in New Issue
Block a user