fix: zip name

This commit is contained in:
quenousimporte 2024-03-03 12:27:15 +00:00
parent 928893c112
commit 0fb64cc945
1 changed files with 1 additions and 1 deletions

View File

@ -1026,7 +1026,7 @@ function downloadtag()
zip.generateAsync({type:"blob"})
.then(function(content)
{
saveAs(content, "notes-" + tag + "=" + timestamp() + ".zip");
saveAs(content, "notes-" + tag + "-" + timestamp() + ".zip");
});
});
}