mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 15:40:57 -07:00
Fix
This commit is contained in:
parent
c66306d1be
commit
59b7512054
2 changed files with 1 additions and 2 deletions
|
@ -4,7 +4,6 @@
|
||||||
export type Source = {
|
export type Source = {
|
||||||
repository_url?: string;
|
repository_url?: string;
|
||||||
feedback_url?: string;
|
feedback_url?: string;
|
||||||
languages?: string[];
|
|
||||||
url: string;
|
url: string;
|
||||||
port: number;
|
port: number;
|
||||||
https?: { [x: string]: string };
|
https?: { [x: string]: string };
|
||||||
|
|
|
@ -60,7 +60,7 @@ router.get('/v1/instance', async ctx => { // TODO: This is a temporary implement
|
||||||
status_count: originalNotesCount,
|
status_count: originalNotesCount,
|
||||||
domain_count: domains.length
|
domain_count: domains.length
|
||||||
},
|
},
|
||||||
languages: config.languages || [ 'ja' ],
|
languages: meta.langs || [ 'ja' ],
|
||||||
contact_account: {
|
contact_account: {
|
||||||
id: maintainer._id,
|
id: maintainer._id,
|
||||||
username: maintainer.username,
|
username: maintainer.username,
|
||||||
|
|
Loading…
Reference in a new issue