properly close rss feed

This commit is contained in:
philipp 2023-05-24 09:11:34 +02:00
parent 1ff5fb9a43
commit 33aeb28140

View File

@ -41,6 +41,8 @@ LIMIT 1000
ret.push_str(&format!("({}) {}", log.created_at, log.msg));
ret.push_str("</item>");
}
ret.push_str("</channel>");
ret.push_str("</rss>");
ret
}
}