|
@@ -1766,7 +1766,7 @@ const saveDownload = async () => {
|
|
|
const res: Blob = await axios.get(item.url.startsWith('/')?(cdn+item.url):item.url, {
|
|
|
responseType: 'blob',
|
|
|
});
|
|
|
- zip.file(item.path, res, { createFolders: true });
|
|
|
+ zip.file(item.path.split('?')[0], res, { createFolders: true });
|
|
|
}catch(e){
|
|
|
console.log(e);
|
|
|
}
|