mirror of https://codeberg.org/cage/tinmop/
- [GUI] ensured the key for cached password for TLC client certificate is erased if an error occurred during gemini connection.
This commit is contained in:
parent
ecfd7a19cd
commit
b1444a4804
|
@ -308,8 +308,12 @@
|
|||
(gemini-client:meta e)
|
||||
url))
|
||||
(error (e)
|
||||
(when certificate
|
||||
(gemini-client:remove-cached-certificate-password certificate))
|
||||
(error (_ "Error getting ~s: ~a") url e))
|
||||
(condition (c)
|
||||
(when certificate
|
||||
(gemini-client:remove-cached-certificate-password certificate))
|
||||
(error (_ "Error getting ~s: ~a") url c)))))
|
||||
|
||||
(defun gemini-request (iri use-cache titan-data)
|
||||
|
|
Loading…
Reference in New Issue