From 5cc5df4d3e79c2a929421062dac8fc83baf3e4b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=9F=E9=85=8C=20=E9=B5=AC=E5=85=84?= Date: Sun, 31 Jul 2022 21:53:53 +0900 Subject: [PATCH] decodeURI for album titles --- botanjs/src/Astro/Blog/AstroEdit/SiteLibrary.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/botanjs/src/Astro/Blog/AstroEdit/SiteLibrary.js b/botanjs/src/Astro/Blog/AstroEdit/SiteLibrary.js index 3478892..848c1f1 100644 --- a/botanjs/src/Astro/Blog/AstroEdit/SiteLibrary.js +++ b/botanjs/src/Astro/Blog/AstroEdit/SiteLibrary.js @@ -53,8 +53,8 @@ { return [ new DataKey("id", data.id) - , new DataKey("title", data.name) - , new DataKey("author", data.author) + , new DataKey("title", decodeURI(data.name)) + , new DataKey("author", decodeURI(data.author)) , new DataKey("hash", data.hash) ]; }