ImageDownloaderLib

Image downloader for manga download scripts.

< Commentaires sur ImageDownloaderLib

Question / commentaire

§
Posté le: 20/06/2024
Édité le: 20/06/2024

JSZip下载的文件和文件夹默认使用UTC时间,在使用everything等软件筛选处理时会因为和所在时区的时间不同而有些麻烦。
建议在const zip = new JSZip();后添加以下代码,让下载的文件和文件夹都修正为所在时区的时间好点
const currDate = new Date();
const dateWithOffset = new Date(currDate.getTime() - currDate.getTimezoneOffset() * 60000);
// replace the default date with dateWithOffset
JSZip.defaults.date = dateWithOffset;

Poster une réponse

Connectez-vous pour poster une réponse.