diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-08-16 12:50:05 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-08-16 12:50:05 +0200 |
commit | 6a843d3952219f4c4451d8176c51128387619058 (patch) | |
tree | 88657cfc41f115d7d5eee52150e00d1f5e93ea7b /lisp/mastodon-http.el | |
parent | 3480a3c8d00ff8efaf16d6e974184851c2c566c1 (diff) |
remove error call in rendering html http response.
Diffstat (limited to 'lisp/mastodon-http.el')
-rw-r--r-- | lisp/mastodon-http.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-http.el b/lisp/mastodon-http.el index 663e2a9..ab621a2 100644 --- a/lisp/mastodon-http.el +++ b/lisp/mastodon-http.el @@ -186,8 +186,8 @@ STRING should be a HTML for a 404 errror." (with-temp-buffer (insert string) (shr-render-buffer (current-buffer)) - (view-mode) ; for 'q' to kill buffer and window - (error ""))) ; stop subsequent processing + (view-mode))) ; for 'q' to kill buffer and window + ;; (error ""))) ; stop subsequent processing (defun mastodon-http--process-response (&optional no-headers vector) "Process http response. |