mirror of github:amycatgirl/amycatgirl.github.io
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: do not display nil in fallback when no description

Signed-off-by: Amy <amy+git@amogus.cloud>

Amy 851854d7 3253651c

+1 -1
+1 -1
leaflet-fallback.el
··· 27 27 (url (car (last (string-split (gethash "uri" rec) "\/+"))))) 28 28 (build-leaflet-html-entry 29 29 (gethash "title" document-info) 30 - (gethash "description" document-info) 30 + (or (gethash "description" document-info) "") 31 31 (gethash "publishedAt" document-info) 32 32 (timestamp->humanreadable-string (at-datetime->timestamp (gethash "publishedAt" document-info))) 33 33 url)))