From 8f55d0ada6ab326e3e112b57dedde26af6e5736e Mon Sep 17 00:00:00 2001 From: Mechiel Lukkien Date: Sat, 11 Nov 2023 20:06:42 +0100 Subject: [PATCH] fix build, missing api build --- webmail/api.json | 2 +- webmail/api.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 }