aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-search.el
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2022-08-26 18:01:48 +0200
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2022-08-26 18:01:48 +0200
commite620ef7cd4ff10a78334cd5e4293756e33f58f71 (patch)
treecce7dfe6638460e3734eeab6e93f1929998efd62 /lisp/mastodon-search.el
parentad6e15019541a38323733ee1576b8c8b39cc5f36 (diff)
completion customizes edit for handling tags completion
Diffstat (limited to 'lisp/mastodon-search.el')
-rw-r--r--lisp/mastodon-search.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-search.el b/lisp/mastodon-search.el
index 5756ae4..89df311 100644
--- a/lisp/mastodon-search.el
+++ b/lisp/mastodon-search.el
@@ -59,7 +59,7 @@
Returns a nested list containing user handle, display name, and URL."
(interactive "sSearch mastodon for: ")
(let* ((url (mastodon-http--api "accounts/search"))
- (response (if (equal mastodon-toot--enable-completion-for-mentions "following")
+ (response (if (equal mastodon-toot--completion-style-for-mentions "following")
(mastodon-http--get-search-json url query "following=true")
(mastodon-http--get-search-json url query))))
(mapcar #'mastodon-search--get-user-info-@ response)))