From 826c228d096a886ec2e451cc5d2251bcf356d846 Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Tue, 24 Oct 2023 14:10:25 +0200 Subject: edit list: exclusive proper true/false strings --- lisp/mastodon-views.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lisp') diff --git a/lisp/mastodon-views.el b/lisp/mastodon-views.el index a6f319b..d7d8e7e 100644 --- a/lisp/mastodon-views.el +++ b/lisp/mastodon-views.el @@ -290,8 +290,9 @@ If ID is provided, use that list." (replies-policy (completing-read "Replies policy: " ; give this a proper name '("followed" "list" "none") nil t nil nil "list")) - (exclusive (when (y-or-n-p "Exclude items from home timeline? ") - "true")) + (exclusive (if (y-or-n-p "Exclude items from home timeline? ") + "true" + "false")) (url (mastodon-http--api (format "lists/%s" id))) (response (mastodon-http--put url `(("title" . ,name-choice) -- cgit v1.2.3