fixes for zip export/import in regard to attachments

This commit is contained in:
zadam
2023-05-06 22:50:28 +02:00
parent a06ddc439d
commit 2aa987c072
11 changed files with 139 additions and 91 deletions

View File

@@ -252,7 +252,7 @@ class AbstractBeccaEntity {
if (this.hasStringContent()) {
return content === null
? ""
: content.toString("UTF-8");
: content.toString("utf-8");
} else {
return content;
}