fix: 云盘加载歌曲数增加至1000 (#1242)

FIXME: 超过 1000 的部分仍无法显示 

Fix #940
Fix #1024
Fix #1240
This commit is contained in:
chen310 2022-01-17 20:38:09 +08:00 committed by GitHub
parent 42f3da9b37
commit 585691aa0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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',