diff options
author | Reto Brunner <reto@labrat.space> | 2020-06-26 09:25:53 +0200 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2020-06-26 09:25:53 +0200 |
commit | 8f1c6c46ff1de2d94377c0cf20fdc8bbdba59fef (patch) | |
tree | 5ebbdb98a2f28419c6cdaf193c5dc76ebaea5c45 /lib/templates | |
parent | 91db250272502f9d1f1f388fa59f5782fd103815 (diff) | |
download | aerc-8f1c6c46ff1de2d94377c0cf20fdc8bbdba59fef.tar.gz |
Fix dates in reply/forward commands.
The data was passed around as a string for some reason, which led to time precision loss and wrong dates being displayed. Simply pass the time as is to fix that.
Diffstat (limited to 'lib/templates')
-rw-r--r-- | lib/templates/template.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/templates/template.go b/lib/templates/template.go index d16ac1f..4346111 100644 --- a/lib/templates/template.go +++ b/lib/templates/template.go @@ -46,7 +46,7 @@ func TestTemplateData() TemplateData { } original := models.OriginalMail{ - Date: time.Now().Format("Mon Jan 2, 2006 at 3:04 PM"), + Date: time.Now(), From: "John Doe <john@example.com>", Text: "This is only a test text", MIMEType: "text/plain", @@ -56,7 +56,6 @@ func TestTemplateData() TemplateData { } func ParseTemplateData(defaults map[string]string, original models.OriginalMail) TemplateData { - originalDate, _ := time.Parse("Mon Jan 2, 2006 at 3:04 PM", original.Date) td := TemplateData{ To: parseAddressList(defaults["To"]), Cc: parseAddressList(defaults["Cc"]), @@ -66,7 +65,7 @@ func ParseTemplateData(defaults map[string]string, original models.OriginalMail) Subject: defaults["Subject"], OriginalText: original.Text, OriginalFrom: parseAddressList(original.From), - OriginalDate: originalDate, + OriginalDate: original.Date, OriginalMIMEType: original.MIMEType, } return td |