mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 17:03:49 +01:00
[mastodon-client] Fix created_at field on user objects
This commit is contained in:
parent
05c32e719c
commit
ba5bcbb16c
@ -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 New Issue
Block a user