fix: remove unused feed_title from RssAdapter

This commit is contained in:
2026-05-04 20:54:32 +02:00
parent 72ce31ded2
commit a3b6f3d894
3 changed files with 5 additions and 7 deletions

View File

@@ -108,7 +108,7 @@ async fn test_app() -> Router {
config: AppConfig { allow_registration: false },
},
html_renderer: Arc::new(AskamaHtmlRenderer::new()),
rss_renderer: Arc::new(RssAdapter::new("Movie Diary".into(), "http://localhost:3000".into())),
rss_renderer: Arc::new(RssAdapter::new("http://localhost:3000".into())),
};
routes::build_router(state)