Preserve filename encoding flag when fixing epub archive

This commit is contained in:
josdion 2021-02-18 12:38:19 +02:00
parent 52bdbe95c9
commit ffd79d5fe4
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()