mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 15:40:57 -07:00
[mastodon-client] Fix created_at field on user objects
This commit is contained in:
parent
05c32e719c
commit
ba5bcbb16c
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ export class UserConverter {
|
|||
acct: acct,
|
||||
display_name: u.name || u.username,
|
||||
locked: u.isLocked,
|
||||
created_at: new Date().toISOString(),
|
||||
created_at: u.createdAt.toISOString(),
|
||||
followers_count: u.followersCount,
|
||||
following_count: u.followingCount,
|
||||
statuses_count: u.notesCount,
|
||||
|
|
Loading…
Reference in a new issue