broadcasts and 404 errors
Some checks failed
test / cargo test (push) Failing after 59s

This commit is contained in:
2024-10-02 15:32:40 +02:00
parent 4f09373df3
commit 2979e21285
23 changed files with 236 additions and 60 deletions

View File

@ -49,5 +49,5 @@ pub async fn render_rss_feed() -> Result<impl IntoResponse, StatusCode> {
.build();
let response = feed_builder.to_string();
return Ok(([(header::CONTENT_TYPE, "application/xml")], response));
Ok(([(header::CONTENT_TYPE, "application/xml")], response))
}