Skip to content

Commit e217084

Browse files
authored
Merge pull request #4 from devforth/feature/AdminForth/1246/uploading-gifs-with-some-speci
fix: change return for valid image path
2 parents bfa8c9e + 4fa9d3e commit e217084

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export default class MarkdownPlugin extends AdminForthPlugin {
188188
if (!key) {
189189
return null;
190190
}
191-
return key;
191+
return decodeURIComponent(key);
192192
};
193193

194194
const upsertMeta = (

0 commit comments

Comments
 (0)