mirror of https://codeberg.org/cage/tinmop/
- [GUI] prevented error when loading twice a non-text resource (e.g. loading twice the same URL pointing to a bitmao image.).
This commit is contained in:
parent
a896c5642e
commit
d494571b38
|
@ -139,19 +139,28 @@
|
||||||
(t
|
(t
|
||||||
(let* ((starting-status :streaming)
|
(let* ((starting-status :streaming)
|
||||||
(gemini-stream (make-instance 'gemini-viewer::gemini-others-data-stream
|
(gemini-stream (make-instance 'gemini-viewer::gemini-others-data-stream
|
||||||
|
:host host
|
||||||
|
:port port
|
||||||
|
:path path
|
||||||
|
:query query
|
||||||
|
:fragment fragment
|
||||||
|
:meta meta
|
||||||
|
:status-code status
|
||||||
|
:status-code-description
|
||||||
|
code-description
|
||||||
:stream-status starting-status
|
:stream-status starting-status
|
||||||
:download-stream response
|
:download-stream response
|
||||||
:download-socket socket))
|
:download-socket socket))
|
||||||
(thread-fn (request-stream-other-document-thread gemini-stream
|
(thread-fn (request-stream-other-document-thread gemini-stream
|
||||||
socket
|
socket
|
||||||
host
|
host
|
||||||
port
|
port
|
||||||
path
|
path
|
||||||
query
|
query
|
||||||
fragment
|
fragment
|
||||||
status
|
status
|
||||||
code-description
|
code-description
|
||||||
meta)))
|
meta)))
|
||||||
(gemini-client:debug-gemini "response is *not* a gemini file stream")
|
(gemini-client:debug-gemini "response is *not* a gemini file stream")
|
||||||
(gemini-viewer:push-db-stream gemini-stream)
|
(gemini-viewer:push-db-stream gemini-stream)
|
||||||
(gemini-viewer::downloading-start-thread gemini-stream
|
(gemini-viewer::downloading-start-thread gemini-stream
|
||||||
|
|
Loading…
Reference in New Issue