fix: zip name
This commit is contained in:
parent
928893c112
commit
0fb64cc945
2
main.js
2
main.js
|
@ -1026,7 +1026,7 @@ function downloadtag()
|
||||||
zip.generateAsync({type:"blob"})
|
zip.generateAsync({type:"blob"})
|
||||||
.then(function(content)
|
.then(function(content)
|
||||||
{
|
{
|
||||||
saveAs(content, "notes-" + tag + "=" + timestamp() + ".zip");
|
saveAs(content, "notes-" + tag + "-" + timestamp() + ".zip");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue