diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-10-13 22:05:55 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-10-13 22:05:55 +0200 |
commit | a623a6dc667d018729befa298c1144dff0f2769f (patch) | |
tree | 6dbb6812a3e14e9f7949dd17e52675544cd5bc74 /lisp/mastodon-tl.el | |
parent | d7ef5b9512e281befda374c82c89977896b407c3 (diff) |
fix reporting rules tests
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index ddae34a..9209026 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -2232,7 +2232,7 @@ report the account for spam." "rules [TAB for options, | to separate]: " alist nil t))) (mapcar (lambda (x) - (alist-get x alist)) + (alist-get x alist nil nil #'equal)) choices))) |