mirror of https://codeberg.org/cage/tinmop/
- [GUI] fixed starting index for rendering;
- [RPC] removed a stale stream coming form a cache item that must be invalidated.
This commit is contained in:
parent
6335419058
commit
199ea81ad5
|
@ -731,7 +731,7 @@
|
|||
(vector-push-extend raw-line ir-rendered-lines)))
|
||||
(collect-link (line)
|
||||
(vector-push-extend (linkify line) ir-rendered-lines)))
|
||||
(let ((starting-index (if (not (vector-empty-p ir-lines))
|
||||
(let ((starting-index (if (vector-empty-p ir-lines)
|
||||
0
|
||||
(length ir-lines))))
|
||||
(loop for line in lines do
|
||||
|
|
|
@ -250,7 +250,10 @@
|
|||
:do-nothing-if-exists-in-db
|
||||
do-nothing-if-exists-in-db))))
|
||||
(progn
|
||||
(debug-gemini-gui "ignoring cache")
|
||||
(debug-gemini-gui "ignoring cache for ~a" actual-iri)
|
||||
(a:when-let ((found (gemini-viewer:find-db-stream-url actual-iri)))
|
||||
(gemini-viewer:remove-db-stream found))
|
||||
|
||||
(gemini-client:request-dispatch url
|
||||
gemini-client::dispatch-table
|
||||
:certificate certificate
|
||||
|
|
Loading…
Reference in New Issue