fix: support utf8 filenames download (#2145)

This commit is contained in:
Lucas Smith
2025-11-07 23:41:31 +11:00
committed by GitHub
parent 88371b665a
commit 48626b9169
4 changed files with 15 additions and 4 deletions

View File

@ -191,7 +191,7 @@ export const run = async ({
const newDocumentData = await Promise.all(
envelopeItems.map(async (envelopeItem) =>
io.runTask(`decorate-and-sign-envelope-item-${envelopeItem.id}`, async () => {
io.runTask(`decorate-${envelopeItem.id}`, async () => {
const envelopeItemFields = envelope.envelopeItems.find(
(item) => item.id === envelopeItem.id,
)?.field;