aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-views.el
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus@riseup.net>2023-10-24 14:10:25 +0200
committermarty hiatt <martianhiatus@riseup.net>2023-10-24 14:10:25 +0200
commit826c228d096a886ec2e451cc5d2251bcf356d846 (patch)
treed7d589dfcfc04ee942f0191d09d9eef45f4acd96 /lisp/mastodon-views.el
parentc3db1170e80c90563ccfee76b6d12502f4d53f2a (diff)
edit list: exclusive proper true/false strings
Diffstat (limited to 'lisp/mastodon-views.el')
-rw-r--r--lisp/mastodon-views.el5
1 files changed, 3 insertions, 2 deletions
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)