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:20:01 +0100 |
commit | 21bb3bff54c766514b93d8022f149f4179e9d31e (patch) | |
tree | edc75e804654e5f3d19f846e13c7578b74712ea9 /lisp/mastodon-tl.el | |
parent | f08fe8278c368795bc5a8f19d1d44a5142c7350c (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)) |