diff options
| -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)  | 
