Merge pull request #1539 from josdion/master

Preserve filename encoding flag when fixing epub archive
This commit is contained in:
Apprentice Harper 2021-04-11 13:56:19 +01:00 committed by GitHub
commit 45eefd6c80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -153,6 +153,7 @@ class fixZip:
nzinfo.internal_attr=zinfo.internal_attr
nzinfo.external_attr=zinfo.external_attr
nzinfo.create_system=zinfo.create_system
nzinfo.flag_bits = zinfo.flag_bits & 0x800 # preserve UTF-8 flag
self.outzip.writestr(nzinfo,data)
self.bzf.close()