fix Bug 51451

This commit is contained in:
pavelbannov 2021-08-03 23:07:03 +03:00
parent 67106638e1
commit 72ad5c6e91

View File

@ -52,7 +52,7 @@ namespace ASC.Web.Files.Core.Compress
/// <param name="title">File name with extension, this name will have the file in the archive</param>
public void CreateEntry(string title)
{
zipEntry = new ZipEntry(title);
zipEntry = new ZipEntry(title) { IsUnicodeText = true };
}
/// <summary>