diff options
author | marty hiatt <martianhiatus@riseup.net> | 2023-10-24 14:10:25 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2023-10-24 14:10:25 +0200 |
commit | 826c228d096a886ec2e451cc5d2251bcf356d846 (patch) | |
tree | d7d589dfcfc04ee942f0191d09d9eef45f4acd96 /lisp/mastodon-views.el | |
parent | c3db1170e80c90563ccfee76b6d12502f4d53f2a (diff) |
edit list: exclusive proper true/false strings
Diffstat (limited to 'lisp/mastodon-views.el')
-rw-r--r-- | lisp/mastodon-views.el | 5 |
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) |