mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-17 13:48:02 +00:00
fix: 云盘加载歌曲数增加至1000 (#1242)
FIXME: 超过 1000 的部分仍无法显示 Fix #940 Fix #1024 Fix #1240
This commit is contained in:
parent
42f3da9b37
commit
585691aa0f
1 changed files with 2 additions and 1 deletions
|
|
@ -156,7 +156,8 @@ export default {
|
||||||
},
|
},
|
||||||
fetchCloudDisk: ({ commit }) => {
|
fetchCloudDisk: ({ commit }) => {
|
||||||
if (!isAccountLoggedIn()) return;
|
if (!isAccountLoggedIn()) return;
|
||||||
return cloudDisk().then(result => {
|
// FIXME: #1242
|
||||||
|
return cloudDisk({ limit: 1000 }).then(result => {
|
||||||
if (result.data) {
|
if (result.data) {
|
||||||
commit('updateLikedXXX', {
|
commit('updateLikedXXX', {
|
||||||
name: 'cloudDisk',
|
name: 'cloudDisk',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue