Skip to content

Commit

Permalink
fix(user/followers): return actor url (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
uvok authored Jan 2, 2025
1 parent 04c15cf commit 613f3c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/api_apub/src/users/user_followers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ pub async fn handler(
.fetch_page(page - 1)
.await?
.into_iter()
.map(|follow| Url::parse(&follow.id))
.map(|follow| Url::parse(&follow.actor))
.filter_map(Result::ok)
.map(serde_json::to_value)
.filter_map(Result::ok)
Expand Down

0 comments on commit 613f3c2

Please sign in to comment.