diff --git a/Iceshrimp.Backend/Core/Services/UserService.cs b/Iceshrimp.Backend/Core/Services/UserService.cs index f3fe7ef5..b22fcbd6 100644 --- a/Iceshrimp.Backend/Core/Services/UserService.cs +++ b/Iceshrimp.Backend/Core/Services/UserService.cs @@ -203,12 +203,12 @@ public class UserService( { User = user, Description = bio, - //Birthday = TODO, - //Location = TODO, - Fields = fields?.ToArray() ?? [], - UserHost = user.Host, - Url = actor.Url?.Link, - Pronouns = pronouns + Birthday = actor.Birthday, + Location = actor.Location, + Fields = fields?.ToArray() ?? [], + UserHost = user.Host, + Url = actor.Url?.Link, + Pronouns = pronouns }; var publicKey = new UserPublickey @@ -343,8 +343,8 @@ public class UserService( user.UserProfile.Description = MfmConverter.FromHtml(actor.Summary, hashtags: asHashtags).Mfm; } - //user.UserProfile.Birthday = TODO; - //user.UserProfile.Location = TODO; + user.UserProfile.Birthday = actor.Birthday; + user.UserProfile.Location = actor.Location; user.UserProfile.Fields = fields?.ToArray() ?? []; user.UserProfile.UserHost = user.Host; user.UserProfile.Url = actor.Url?.Link;