mirror of
https://codeberg.org/cage/tinmop/
synced 2024-12-21 23:43:54 +01:00
- instructed 'iri:render-iri' to just returns the string when stream is null.
This commit is contained in:
parent
eb14b342df
commit
3290f12226
@ -353,7 +353,9 @@
|
||||
(format string-stream "?~a" query))
|
||||
(when fragment
|
||||
(format string-stream "#~a" fragment))))))
|
||||
(write-string (render) stream)))
|
||||
(if stream
|
||||
(write-string (render) stream)
|
||||
(render))))
|
||||
|
||||
(defmethod to-s ((object iri) &key &allow-other-keys)
|
||||
(with-output-to-string (stream)
|
||||
|
Loading…
Reference in New Issue
Block a user