diff options
author | Tassilo Horn <tsdh@gnu.org> | 2022-12-29 16:30:39 +0100 |
---|---|---|
committer | Tassilo Horn <tsdh@gnu.org> | 2022-12-29 16:30:39 +0100 |
commit | e7521f255c62debd1077ef77bfa0dd6ca4348cfa (patch) | |
tree | bd7d64484026c45fb752888443d34838e30c2c41 /lisp | |
parent | 8a633d9ab01e9c8cb47e9edf54d52f44e26c57f9 (diff) |
Fix mastodon-tl-position-after-update
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-tl.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 86aaf67..b3427fc 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -2813,9 +2813,9 @@ from the start if it is nil." (let ((inhibit-read-only t)) (mastodon-tl--set-after-update-marker) (goto-char (or mastodon-tl--update-point (point-min))) - (funcall update-function json)) - (when mastodon-tl--after-update-marker - (goto-char mastodon-tl--after-update-marker))) + (funcall update-function json) + (when mastodon-tl--after-update-marker + (goto-char mastodon-tl--after-update-marker)))) (message "nothing to update"))))) (defun mastodon-tl--get-link-header-from-response (headers) |