[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/mastodon 0aad468b2d 19/31: Merge pull request 'Fixed poll
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/mastodon 0aad468b2d 19/31: Merge pull request 'Fixed poll expiry minimum time' (#697) from davemq/mastodon.el:fix-poll-minimum into develop |
Date: |
Mon, 2 Jun 2025 13:01:20 -0400 (EDT) |
branch: elpa/mastodon
commit 0aad468b2d7df8f59fa827d6bd7ee8e3171d56d8
Merge: a95bae2755 a369dc6178
Author: martianh <martianh@noreply.codeberg.org>
Commit: martianh <martianh@noreply.codeberg.org>
Merge pull request 'Fixed poll expiry minimum time' (#697) from
davemq/mastodon.el:fix-poll-minimum into develop
---
lisp/mastodon-toot.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el
index e50d42d718..5381c0ff98 100644
--- a/lisp/mastodon-toot.el
+++ b/lisp/mastodon-toot.el
@@ -1486,8 +1486,8 @@ Return a cons of a human readable string, and a
seconds-from-now string."
(response (completing-read "poll ends in [or enter seconds]: "
options nil 'confirm)))
(or (assoc response options #'string=)
- (if (< (string-to-number response) 600)
- (car options) ;; min 5 mins
+ (if (< (string-to-number response) 300)
+ (cons "5 minutes" (number-to-string (* 60 5))) ;; min 5 mins
(cons (format "%s seconds" response) response)))))
(defun mastodon-toot--poll-expiry-options-alist ()
- [nongnu] elpa/mastodon fe3a4b8e2c 21/31: WIP tl: render post tags direct from tags data., (continued)
- [nongnu] elpa/mastodon fe3a4b8e2c 21/31: WIP tl: render post tags direct from tags data., ELPA Syncer, 2025/06/02
- [nongnu] elpa/mastodon 0d83e87207 27/31: add mastodon-tl-return, RET on foll reqs/folls loads profiles. FIX #713, ELPA Syncer, 2025/06/02
- [nongnu] elpa/mastodon 734b7cc518 10/31: Made mastodon-toot--read-poll-expiry accept any number of seconds., ELPA Syncer, 2025/06/02
- [nongnu] elpa/mastodon a369dc6178 18/31: Fixed poll expiry minimum time, ELPA Syncer, 2025/06/02
- [nongnu] elpa/mastodon 4b2de6183d 28/31: Merge branch 'tags' into develop, ELPA Syncer, 2025/06/02
- [nongnu] elpa/mastodon d567dea214 25/31: tl: autoload, ELPA Syncer, 2025/06/02
- [nongnu] elpa/mastodon d80db8e0fe 29/31: autoloads, ELPA Syncer, 2025/06/02
- [nongnu] elpa/mastodon f6247f0c9b 31/31: Merge branch 'develop', ELPA Syncer, 2025/06/02
- [nongnu] elpa/mastodon 9df4feabc8 24/31: working baseline tags but not for body tags, ELPA Syncer, 2025/06/02
- [nongnu] elpa/mastodon a825e44f45 08/31: http: trim the json-string, ELPA Syncer, 2025/06/02
- [nongnu] elpa/mastodon 0aad468b2d 19/31: Merge pull request 'Fixed poll expiry minimum time' (#697) from davemq/mastodon.el:fix-poll-minimum into develop,
ELPA Syncer <=
- [nongnu] elpa/mastodon 32bc411efd 20/31: url-lookup: peertube post regex, ELPA Syncer, 2025/06/02
- [nongnu] elpa/mastodon e319ab4cd8 22/31: toot: tags regex - allow _, ELPA Syncer, 2025/06/02
- [nongnu] elpa/mastodon 1e3b40590d 23/31: tl: view single toot cmd fix up, ELPA Syncer, 2025/06/02
- [nongnu] elpa/mastodon b7f58adade 07/31: tl: support nil as display_name, ELPA Syncer, 2025/06/02
- [nongnu] elpa/mastodon e6f8415e87 26/31: toot: tags regex - allow _, ELPA Syncer, 2025/06/02