diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/mastodon-tl.el | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 4323c66..257a6f2 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -3000,8 +3000,8 @@ This location is defined by a non-nil value of  (defun mastodon-tl--get-link-header-from-response (headers)    "Get http Link header from list of http HEADERS."    ;; pleroma uses "link", so case-insensitive match required: -  (when (alist-get "Link" headers nil nil 'cl-equalp) -    (split-string (alist-get "Link" headers nil nil 'cl-equalp) ", "))) +  (when-let ((link-headers (alist-get "Link" headers nil nil 'cl-equalp))) +    (split-string link-headers ", ")))  (defun mastodon-tl--init (buffer-name endpoint update-function                                        &optional headers params hide-replies) | 
