mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-26 13:16:43 -06:00
5b965349a5
Fix #7314 Fix #7313
15 lines
440 B
TypeScript
15 lines
440 B
TypeScript
import * as Koa from 'koa';
|
|
import * as manifest from '../../../assets/client/manifest.json';
|
|
import { fetchMeta } from '../../misc/fetch-meta';
|
|
|
|
module.exports = async (ctx: Koa.Context) => {
|
|
const json = JSON.parse(JSON.stringify(manifest));
|
|
|
|
const instance = await fetchMeta(true);
|
|
|
|
json.short_name = instance.name || 'Misskey';
|
|
json.name = instance.name || 'Misskey';
|
|
|
|
ctx.set('Cache-Control', 'max-age=300');
|
|
ctx.body = json;
|
|
};
|