branch: elpa-admin commit baa3e4671b9527a25facd48e7894794fd327a407 Author: Stefan Monnier <monn...@iro.umontreal.ca> Commit: Stefan Monnier <monn...@iro.umontreal.ca>
* elpa-admin.el (elpaa--report-failure): Increase threshold The version is often included 3 times in the error message, so a single additional digit is all it takes to get past the previous threshold. --- elpa-admin.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/elpa-admin.el b/elpa-admin.el index e8a268b825..e38e46c9c5 100644 --- a/elpa-admin.el +++ b/elpa-admin.el @@ -644,10 +644,10 @@ returns. Return the selected revision." (write-region txt nil file nil 'silent) (when (and elpaa--email-to (> (file-attribute-size (file-attributes file)) - ;; Arbitrarily require a "2 chars increase" minimum + ;; Arbitrarily require a "8 chars increase" minimum ;; so we don't resend a notification when the timestamp ;; in the version got a bit longer. - (+ prev-size 2))) + (+ prev-size 8))) (let ((maintainers (elpaa--maintainers (or metadata (elpaa--metadata (elpaa--pkg-root pkg)