diff options
author | marty hiatt <martianhiatus@riseup.net> | 2023-10-31 12:16:37 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2023-10-31 12:16:37 +0100 |
commit | 9a8d24f9fa2b8644ca50191363f16ac3143cfd5e (patch) | |
tree | 066d706c849dbc10a63c464fa6e728cbfaacb6f1 /lisp/mastodon-tl.el | |
parent | 2e195ee009071ee024d194a6ac1817966b581420 (diff) |
call remove-overlays in --thread (fix bug display of play if we reload a thread)
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 8c7fab8..589f4ed 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -1804,6 +1804,7 @@ view all branches of a thread." ;; if we have a thread: (with-mastodon-buffer buffer #'mastodon-mode nil (let ((marker (make-marker))) + (remove-overlays) ; video overlays (mastodon-tl--set-buffer-spec buffer endpoint #'mastodon-tl--thread) (mastodon-tl--timeline (alist-get 'ancestors context) :thread) |