diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-26 18:20:01 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-26 18:24:08 +0100 |
commit | e1d53239cd633e7d8b3d1638284963a2e6e7dba3 (patch) | |
tree | dce2d3f3a06ac3e27ae8fdccb8af4e95527e60b9 /lisp/mastodon-tl.el | |
parent | 52e8bf5ae56d20c9a8ed478284b4c591ba8d6932 (diff) |
nil the update-fun in buffer-spec for --thread views
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 7d23b69..a5b5ed7 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -1491,10 +1491,9 @@ ID is that of the toot to view." (with-output-to-temp-buffer buffer (switch-to-buffer buffer) (mastodon-mode) - (mastodon-tl--set-buffer-spec - buffer - (format "statuses/%s/context" id) - 'mastodon-tl--thread) + (mastodon-tl--set-buffer-spec buffer + (format "statuses/%s/context" id) + nil) (let ((inhibit-read-only t)) (mastodon-tl--timeline (alist-get 'ancestors context)) (goto-char (point-max)) |