fix: http download filename special character

This commit is contained in:
linyuchen
2024-05-05 20:05:52 +08:00
parent 1fa740de2d
commit ad251a7682

View File

@@ -193,6 +193,7 @@ export async function uri2local(uri: string, fileName: string | null = null): Pr
// res.ext = pathInfo.ext
}
}
fileName = fileName.replace(/[/\\:*?"<>|]/g, '_');
res.fileName = fileName;
filePath = path.join(getTempDir(), uuidv4() + fileName);
fs.writeFileSync(filePath, buffer);