diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-09-03 14:35:52 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-09-03 14:35:52 +0200 |
commit | 7c1adc4c515dddce4fa6e39f5a6ab559033c31d8 (patch) | |
tree | b06e73f29ddbed1e006ccb49079b8651d692eeb7 /lisp | |
parent | e2d528fa4c73b04dfe39b12d9fd9eba38db88ed9 (diff) |
get-text-property, coz our tl--property requres masto buffer
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el index b5b1d87..13a410b 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -276,7 +276,7 @@ not, just browse the URL in the normal fashion." (interactive) (let* ((query (or query-url (url-get-url-at-point) - (mastodon-tl--property 'shr-url) + (get-text-property (point) 'shr-url) (read-string "Lookup URL: ")))) ;; TODO: test for a likely masto link and just browse-url if not (save-match-data |