diff --git a/crates/presentation/src/handlers.rs b/crates/presentation/src/handlers.rs index dc13cf7..5f014f7 100644 --- a/crates/presentation/src/handlers.rs +++ b/crates/presentation/src/handlers.rs @@ -279,7 +279,8 @@ pub mod html { Path(profile_user_uuid): Path, Query(params): Query, ) -> impl IntoResponse { - let ctx = build_page_context(&state, user_id).await; + let mut ctx = build_page_context(&state, user_id).await; + ctx.rss_url = format!("/users/{}/feed.rss", profile_user_uuid); let view = params.view.unwrap_or_else(|| "recent".to_string()); let profile_user = match state.app_ctx.user_repository