aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Johnson <[email protected]>2025-12-11 03:09:07 -0500
committerSamuel Johnson <[email protected]>2025-12-11 03:09:07 -0500
commita7f985d6ac0a0b4d4162716476effa9842b95442 (patch)
tree1c22e011253151f66c7f305ed3ac13e09e23d567
parent3030b4a36057a6359057ce294be847a97a9f70f1 (diff)
Use correct weird time format
-rw-r--r--cmd/web/handlers/export.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/web/handlers/export.go b/cmd/web/handlers/export.go
index 83309d8..ab9d824 100644
--- a/cmd/web/handlers/export.go
+++ b/cmd/web/handlers/export.go
@@ -65,7 +65,7 @@ func (ctx *rssExportContext) feed(w http.ResponseWriter, r *http.Request) {
return
}
- p.FormattedTime = p.Time.Format(time.RFC822)
+ p.FormattedTime = p.Time.Format("Mon, 02 Jan 2006 15:04:05 MST")
title := ""
z := html.NewTokenizer(strings.NewReader(string(p.Brief)))