diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-10-13 18:21:51 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-10-13 18:21:51 +0200 |
commit | 51352ce53d0c7e80947c5a355976de07a1449aad (patch) | |
tree | 110108ecf40b5a2497d646aed8e9bf67713ea944 /lisp/mastodon-search.el | |
parent | 1e3e37d346e8be856c642fb2f40be38611c54dc8 (diff) |
set buffer spec explicitly for acct search
Diffstat (limited to 'lisp/mastodon-search.el')
-rw-r--r-- | lisp/mastodon-search.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/mastodon-search.el b/lisp/mastodon-search.el index b385b8c..768229e 100644 --- a/lisp/mastodon-search.el +++ b/lisp/mastodon-search.el @@ -193,7 +193,10 @@ ACCOUNT-ID means limit search to that account, for \"statuses\" type only." ;; user results: (when accts (mastodon-search--format-heading "USERS") - (mastodon-search--insert-users-propertized accts :note)) + (mastodon-search--insert-users-propertized accts :note) + (mastodon-tl--set-buffer-spec buffer "search" + 'mastodon-views--insert-users-propertized-note + nil params)) ;; hashtag results: (when tags (mastodon-search--format-heading "HASHTAGS") |