mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-25 06:41:36 -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,
|
acct: acct,
|
||||||
display_name: u.name || u.username,
|
display_name: u.name || u.username,
|
||||||
locked: u.isLocked,
|
locked: u.isLocked,
|
||||||
created_at: new Date().toISOString(),
|
created_at: u.createdAt.toISOString(),
|
||||||
followers_count: u.followersCount,
|
followers_count: u.followersCount,
|
||||||
following_count: u.followingCount,
|
following_count: u.followingCount,
|
||||||
statuses_count: u.notesCount,
|
statuses_count: u.notesCount,
|
||||||
|
|
Loading…
Reference in a new issue