From 01008a6cc64de93b8a3260f9f347b39e1c7ea610 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christopher=20Cot=C3=A9?= Date: Fri, 17 Jan 2025 18:02:32 -0500 Subject: [PATCH] fix rss with no description --- public/index.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index f23f394..3a404b4 100644 --- a/public/index.html +++ b/public/index.html @@ -125,7 +125,9 @@ } function post(el, cls){ - return `
+ let d = el.querySelector("description") + if(d.firstChild) { + return ``; + }else{ + return ``; + } } function atom(el, cls){ -- 2.45.3