branch: elpa-admin commit 2c6eeec610557b18db6591f8557dcf62b3b68b48 Author: Stefan Monnier <monn...@iro.umontreal.ca> Commit: Stefan Monnier <monn...@iro.umontreal.ca>
* elpa-admin.el (elpaa--render-atom): Fix timestamp We ended up using the time/date of the oldest file. Rather than change it to the date of the newest file, just use the current time. --- elpa-admin.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elpa-admin.el b/elpa-admin.el index 450478f212..8f022351c2 100644 --- a/elpa-admin.el +++ b/elpa-admin.el @@ -3232,7 +3232,7 @@ the article." (title nil ,title) (link ((href . ,self) (rel . "self"))) (id nil ,self) - (updated nil ,(elpaa--rfc3339 (plist-get :time (car articles)))) + (updated nil ,(elpaa--rfc3339 (current-time))) ,@(mapcar (pcase-lambda ((map (:title title) (:time time) (:path path) (:content content)))