After zipping, the file's date modified time is wrong

After the version: 22.12.0.0, the file’s date modified time always is 2049/1/1
previous versions are working good.
code:
using var stream = File.OpenWrite(zipFilePath);
var setting = new ArchiveEntrySettings(CompressionSettings.Store, new TraditionalEncryptionSettings(password));
using var archive = new Archive(setting);
archive.CreateEntry(Path.GetFileName(filePath), filePath);
archive.Save(stream, new ArchiveSaveOptions { Encoding = Encoding.UTF8 });

Hello @MikeLiu111
yes, this bug has been fixed in the recent version.

I have tried with 23.10.0, it’s working now, thanks.