1
0
Fork 0

- [GUI] refreshed streams frame when loading an URL.

This commit is contained in:
cage 2023-07-27 16:26:33 +02:00
parent 80ad626432
commit 53ad411514
1 changed files with 7 additions and 4 deletions

View File

@ -876,10 +876,13 @@ local file paths."
((gemini-client:absolute-titan-url-p actual-iri)
(client-titan-window:init-window main-window actual-iri))
((gemini-parser:gemini-iri-p actual-iri)
(start-stream-iri (iri-ensure-path actual-iri)
main-window
use-cache
status))
(let ((stream-frame (stream-frame main-window)))
(start-stream-iri (iri-ensure-path actual-iri)
main-window
use-cache
status)
(client-stream-frame::refresh-all-streams
(client-stream-frame::table stream-frame))))
((or (null (uri:scheme parsed-iri))
(string= (uri:scheme parsed-iri)
constants:+file-scheme+))