mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 17:03:49 +01:00
fixed what ever calc did here, masto app didnt
This commit is contained in:
parent
273b86b9f4
commit
506709d2eb
@ -88,8 +88,8 @@ export async function getInstance(response: Entity.Instance) {
|
||||
bot: true,
|
||||
discoverable: false,
|
||||
group: false,
|
||||
created_at: Math.floor(new Date().getTime() / 1000),
|
||||
createdAt: Math.floor(new Date().getTime() / 1000),
|
||||
created_at: new Date().toISOString(),
|
||||
createdAt: new Date().toISOString(),
|
||||
note: "Please refer to the original instance for the actual admin contact.",
|
||||
url: "/",
|
||||
avatar: "/static-assets/badges/info.png",
|
||||
@ -99,7 +99,7 @@ export async function getInstance(response: Entity.Instance) {
|
||||
followers_count: -1,
|
||||
following_count: 0,
|
||||
statuses_count: 0,
|
||||
last_status_at: Math.floor(new Date().getTime() / 1000),
|
||||
last_status_at: new Date().toISOString(),
|
||||
noindex: true,
|
||||
emojis: [],
|
||||
fields: [],
|
||||
|
Loading…
Reference in New Issue
Block a user