fix(actors): populate profile fields in read_from_id

This commit is contained in:
2026-05-24 00:32:00 +02:00
parent a604e1bd40
commit 7901b29f7c

View File

@@ -228,12 +228,12 @@ impl Object for DbActor {
following_url,
ap_id,
last_refreshed_at: Utc::now(),
bio: None,
avatar_url: None,
banner_url: None,
also_known_as: None,
profile_url: None,
attachment: vec![],
bio: user.bio,
avatar_url: user.avatar_url,
banner_url: user.banner_url,
also_known_as: user.also_known_as,
profile_url: user.profile_url,
attachment: user.attachment,
}))
}