branch: scratch/elpa-admin
commit 1054aa3a4ec256daf3daf37011577aa324b44f92
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 d7be703c49..1fb325a5c0 100644
--- a/elpa-admin.el
+++ b/elpa-admin.el
@@ -3221,7 +3221,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)))

Reply via email to