From 74e021cbb7c204c8141825a9e82065c45dba26e1 Mon Sep 17 00:00:00 2001 From: grunfink Date: Tue, 9 Sep 2025 23:03:34 +0200 Subject: Fixed RSS. --- rss.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rss.c b/rss.c index f72dac4..bb7b043 100644 --- a/rss.c +++ b/rss.c @@ -64,6 +64,9 @@ xs_str *rss_from_timeline(snac *user, const xs_list *timeline, if (!id || !content || !published) continue; + if (!is_msg_public(msg)) + continue; + /* create a title with the first line of the content */ xs *title = xs_replace(content, "
", "\n"); title = xs_regex_replace_i(title, "<[^>]+>", " "); -- cgit v1.2.3