diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-09-13 13:00:41 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-09-13 13:01:12 +0200 |
commit | 2bf81965326040e99b2cc2ba9f1850d1c9868160 (patch) | |
tree | 011862b712abedde22e3842ae806d563f866d915 /lisp/mastodon-tl.el | |
parent | 154d984a7af43b5e0caa9f3df7ca49f0def1dab1 (diff) |
another proper-list-p test
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 4726d29..158ba5f 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -668,8 +668,10 @@ START and END are the boundaries of the link in the toot." (;; User handles: maybe-userhandle ;; this fails on mentions in profile notes: - (let ((maybe-userid (mastodon-tl--extract-userid-toot - toot maybe-userhandle))) + (let ((maybe-userid + (when (proper-list-p toot) + (mastodon-tl--extract-userid-toot + toot maybe-userhandle)))) (setq mastodon-tab-stop-type 'user-handle keymap mastodon-tl--link-keymap help-echo (concat "Browse user profile of " maybe-userhandle) |