mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-09-08 17:51:20 +02:00
Merge branch 'main' into aggresive-redact
This commit is contained in:
commit
338b77de99
@ -694,7 +694,7 @@ class PdfContainer {
|
||||
const documentBlob = new Blob([pdfBytesArray[i]], {
|
||||
type: 'application/pdf',
|
||||
});
|
||||
zip.file(baseNameString + '-' + (i + 1) + '.pdf', documentBlob);
|
||||
zip.file(baseNameString + '-' + String(i + 1).padStart(1 + Math.floor(Math.log10(pdfBytesArray.length)), "0") + '.pdf', documentBlob);
|
||||
}
|
||||
|
||||
return zip;
|
||||
|
@ -3,7 +3,7 @@ repositories {
|
||||
}
|
||||
|
||||
ext {
|
||||
jwtVersion = '0.12.7'
|
||||
jwtVersion = '0.13.0'
|
||||
}
|
||||
|
||||
bootRun {
|
||||
|
Loading…
Reference in New Issue
Block a user