diff options
author | mousebot <mousebot@riseup.net> | 2022-02-15 15:30:58 +0100 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2022-02-15 15:33:33 +0100 |
commit | 787f18dcff2ee7a4c5a5cbf331f4e2d26997e1cc (patch) | |
tree | 5eddfda3c9c83ba58bb7a9320d6afd1f7f9ffbc6 /lisp/mastodon-profile.el | |
parent | 907991314d0f4e2b88eeb093a6222468e77c9068 (diff) |
replace all calls to mastodon-search--insert-users-propertized
with calls to mastodon-profile--add-author-bylines.
Diffstat (limited to 'lisp/mastodon-profile.el')
-rw-r--r-- | lisp/mastodon-profile.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index d632e5e..8ac0b67 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -398,8 +398,7 @@ FIELD is used to identify regions under 'account" (defun mastodon-profile--add-author-bylines (tootv) "Convert TOOTV into a author-bylines and insert." (let ((inhibit-read-only t)) - (if (equal tootv '[]) - (message "Looks like you have no follow requests for the moment.") + (when (not (equal tootv '[])) (mapc (lambda (toot) (let ((start-pos (point))) (insert "\n" |