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, following_url,
ap_id, ap_id,
last_refreshed_at: Utc::now(), last_refreshed_at: Utc::now(),
bio: None, bio: user.bio,
avatar_url: None, avatar_url: user.avatar_url,
banner_url: None, banner_url: user.banner_url,
also_known_as: None, also_known_as: user.also_known_as,
profile_url: None, profile_url: user.profile_url,
attachment: vec![], attachment: user.attachment,
})) }))
} }