修复使用同步功能同步完成后,列表没有被保存的问题

This commit is contained in:
lyswhut 2021-10-07 14:20:31 +08:00
parent ff03af5a56
commit 111f59b8eb
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
### 修复
- 修复我的列表搜索无法搜索小括号、中括号等字符,并会导致应用崩溃的问题
- 修复使用同步功能同步完成后列表没有被保存导致下次再连接同步时被同步新增的歌曲被移除的问题此问题由v0.8.2的存储切片改造引入的)
### 其他

View File

@ -122,7 +122,7 @@ export const getDataMultiple = async keys => {
export const setDataMultiple = async datas => {
const allData = []
for (const [key, value] of datas) {
for (const { key, value } of datas) {
buildData(key, value, allData)
}
try {