diff --git a/src/controller/feed.rs b/src/controller/feed.rs index cda4ad48..25fa1026 100644 --- a/src/controller/feed.rs +++ b/src/controller/feed.rs @@ -680,7 +680,8 @@ pub(super) async fn update( title: atom.title.to_string(), } } - Err(_) => { + Err(e) => { + error!(?e); return Err(AppError::InvalidFeedLink); } }, diff --git a/src/controller/inn.rs b/src/controller/inn.rs index 758e4625..ee134953 100644 --- a/src/controller/inn.rs +++ b/src/controller/inn.rs @@ -1225,7 +1225,10 @@ pub(crate) async fn inn_feed(Path(i): Path) -> Result