File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 66- Fix PDF/A3 compliance of attachments
77- Fix CIDSet generation only for PDF/A1 subset
88- Fix missing acroform font dictionary
9+ - Fix modify time comparison check equality embedded files
910
1011### [ v0.15.1] - 2024-10-30
1112
Original file line number Diff line number Diff line change @@ -120,6 +120,7 @@ function isEqual(a, b) {
120120 a . Params . CheckSum . toString ( ) === b . Params . CheckSum . toString ( ) &&
121121 a . Params . Size === b . Params . Size &&
122122 a . Params . CreationDate . getTime ( ) === b . Params . CreationDate . getTime ( ) &&
123- a . Params . ModDate . getTime ( ) === b . Params . ModDate . getTime ( )
123+ ( ( a . Params . ModDate === undefined && b . Params . ModDate === undefined ) ||
124+ a . Params . ModDate . getTime ( ) === b . Params . ModDate . getTime ( ) )
124125 ) ;
125126}
You can’t perform that action at this time.
0 commit comments