diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-03-10 22:43:17 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-03-10 22:43:17 +0100 |
commit | 08ed1ae30888086256f343be978cf7eb65cec9eb (patch) | |
tree | 7a4d8a2f2bdc0f60d07dbfba128cd73df63b9709 /lisp/mastodon-tl.el | |
parent | ff4566b1d6f66e08f9438ace27ca083a2102f2d9 (diff) |
fix broken instance-response-fun
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 0309d20..9c12f84 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -2339,15 +2339,15 @@ INSTANCE is an instance domain name." nil ; params nil ; silent :vector))) - (mastodon-tl--instance-response-fun response brief))))) + (mastodon-tl--instance-response-fun response brief instance))))) (defun mastodon-tl--instance-response-fun (response brief instance) "Display instance description RESPONSE in a new buffer. BRIEF means to show fewer details." (when response - (let ((domain (url-file-nondirectory instance)) - (buf (get-buffer-create - (format "*mastodon-instance-%s*" domain)))) + (let* ((domain (url-file-nondirectory instance)) + (buf (get-buffer-create + (format "*mastodon-instance-%s*" domain)))) (with-current-buffer buf (switch-to-buffer-other-window buf) (let ((inhibit-read-only t)) |