aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-profile.el
diff options
context:
space:
mode:
authormousebot <mousebot@riseup.net>2021-05-17 17:17:36 +0200
committermousebot <mousebot@riseup.net>2021-05-17 17:17:36 +0200
commitab98f3b435e05a0421c297c8f47aa1239b7a4886 (patch)
tree76aa7d92e5fd0cdd595f0d307b488c9444115709 /lisp/mastodon-profile.el
parenta52f25ce26cd6a9fe8d88d893eb8500ad1292677 (diff)
split mastodon-tl--timeline back into two functions.
this is to prevent pinned toots appearing as such when this function is used elsewhere than for a profile. e.g. the tag search.
Diffstat (limited to 'lisp/mastodon-profile.el')
-rw-r--r--lisp/mastodon-profile.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el
index f14b469..6f83709 100644
--- a/lisp/mastodon-profile.el
+++ b/lisp/mastodon-profile.el
@@ -76,7 +76,7 @@ extra keybindings."
(defun mastodon-profile--make-author-buffer (account)
"Take a ACCOUNT and inserts a user account into a new buffer."
(mastodon-profile--make-profile-buffer-for
- account "statuses" #'mastodon-tl--timeline))
+ account "statuses" #'mastodon-tl--timeline-pinned))
(defun mastodon-profile--open-following ()
"Open a profile buffer for the current profile showing the accounts
@@ -254,7 +254,7 @@ If toot is a boost, opens the profile of the booster."
(list
(let ((user-handles (mastodon-profile--extract-users-handles
(mastodon-profile--toot-json))))
- (completing-read "View profile of user: "
+ (completing-read "View profile of user [choose or enter any handle]: "
user-handles
nil ; predicate
'confirm))))