mirror of
https://codeberg.org/cage/tinmop/
synced 2025-02-01 04:26:47 +01:00
- prevented crash when 'original-path' is nil.
This commit is contained in:
parent
64ffd305bd
commit
9788bf12fb
@ -249,7 +249,9 @@
|
||||
(let* ((absolute-path-p (string-starts-with-p "/" link-value))
|
||||
(path (if absolute-path-p
|
||||
link-value
|
||||
(strcat (path-last-dir original-path)
|
||||
(strcat (if original-path
|
||||
(path-last-dir original-path)
|
||||
"/")
|
||||
link-value))))
|
||||
(make-gemini-uri original-host
|
||||
(normalize-path path)
|
||||
|
Loading…
x
Reference in New Issue
Block a user