Revert prev commit, do not encodeURI on DataKey

This commit is contained in:
2022-07-31 22:06:39 +09:00
parent 5cc5df4d3e
commit 04525d1e1a
4 changed files with 8 additions and 5 deletions

View File

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