diff --git a/webmail/api.json b/webmail/api.json index 0c2f7e1..fd7651c 100644 --- a/webmail/api.json +++ b/webmail/api.json @@ -2051,7 +2051,7 @@ }, { "Name": "Filename", - "Docs": "File name based on \"name\" attribute of \"Content-Type\", or the \"filename\" attribute of \"Content-Disposition\". todo: decode non-ascii character sets", + "Docs": "File name based on \"name\" attribute of \"Content-Type\", or the \"filename\" attribute of \"Content-Disposition\".", "Typewords": [ "string" ] diff --git a/webmail/api.ts b/webmail/api.ts index 979c293..1467bfb 100644 --- a/webmail/api.ts +++ b/webmail/api.ts @@ -337,7 +337,7 @@ export interface MessageEnvelope { // viewable text or HTML part. export interface Attachment { Path?: number[] | null // Indices into top-level message.Part.Parts. - Filename: string // File name based on "name" attribute of "Content-Type", or the "filename" attribute of "Content-Disposition". todo: decode non-ascii character sets + Filename: string // File name based on "name" attribute of "Content-Type", or the "filename" attribute of "Content-Disposition". Part: Part }