suzumiyahifumi / Fantia-Downloader-tampermonkey

This script will append a download button to the Fanita Image Box for downloading whole image in a ZIP file.
63 stars 9 forks source link

修正部分標題會造成下載失敗 #18

Open bluenk opened 4 months ago

bluenk commented 4 months ago

部分標題的開頭或結尾有包含 .空格 的情況下會造成下載失敗。 e.g.

fmt = {postTitle}/file.{ext}

postTitle = "title ";
before fix: "title /file.png"    // invalid folder name
after fix: "title_/file.png"

postTitle = "title...";
before fix: "title.../file.png"    // invalid folder name
after fix: "title.._/file.png"