diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-06-14 03:07:02 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-06-14 15:20:16 +0800 |
commit | 448852a474126c42d6d078d0bb82258b7ecc0750 (patch) | |
tree | 413596646054970a89c7533e6335594ec13ec4ee /deno/mail-relay/aws/fetch.ts | |
parent | 3b8cde9ae3d5480d808d16f729b82b66bf2c1602 (diff) | |
download | crupest-448852a474126c42d6d078d0bb82258b7ecc0750.tar.gz crupest-448852a474126c42d6d078d0bb82258b7ecc0750.tar.bz2 crupest-448852a474126c42d6d078d0bb82258b7ecc0750.zip |
deno & nvim: turn back to use deno fmt instead of prettier.
Diffstat (limited to 'deno/mail-relay/aws/fetch.ts')
-rw-r--r-- | deno/mail-relay/aws/fetch.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/deno/mail-relay/aws/fetch.ts b/deno/mail-relay/aws/fetch.ts index 68e02e6..9278e63 100644 --- a/deno/mail-relay/aws/fetch.ts +++ b/deno/mail-relay/aws/fetch.ts @@ -104,8 +104,9 @@ export class AwsMailFetcher { .sections() .headers() .date(); - const dateString = - date != null ? toFileNameString(date, true) : "invalid-date"; + const dateString = date != null + ? toFileNameString(date, true) + : "invalid-date"; const newPath = `${this.#archivePrefix}${dateString}/${s3Key}`; console.info(`Archiving s3 mail ${s3Key} to ${newPath}...`); |