decodeURI for album titles

This commit is contained in:
斟酌 鵬兄 2022-07-31 21:53:53 +09:00
parent ba9baacdd5
commit 5cc5df4d3e

View File

@ -53,8 +53,8 @@
{ {
return [ return [
new DataKey("id", data.id) new DataKey("id", data.id)
, new DataKey("title", data.name) , new DataKey("title", decodeURI(data.name))
, new DataKey("author", data.author) , new DataKey("author", decodeURI(data.author))
, new DataKey("hash", data.hash) , new DataKey("hash", data.hash)
]; ];
} }