refactor: use structuredClone for deep clone
This commit is contained in:
@ -1,16 +1,16 @@
|
||||
import Koa from 'koa';
|
||||
import manifest from './manifest.json' assert { type: 'json' };
|
||||
import { fetchMeta } from '@/misc/fetch-meta.js';
|
||||
import manifest from './manifest.json' assert { type: 'json' };
|
||||
|
||||
export const manifestHandler = async (ctx: Koa.Context) => {
|
||||
const json = JSON.parse(JSON.stringify(manifest));
|
||||
const res = structuredClone(manifest);
|
||||
|
||||
const instance = await fetchMeta(true);
|
||||
|
||||
json.short_name = instance.name || 'Misskey';
|
||||
json.name = instance.name || 'Misskey';
|
||||
if (instance.themeColor) json.theme_color = instance.themeColor;
|
||||
res.short_name = instance.name || 'Misskey';
|
||||
res.name = instance.name || 'Misskey';
|
||||
if (instance.themeColor) res.theme_color = instance.themeColor;
|
||||
|
||||
ctx.set('Cache-Control', 'max-age=300');
|
||||
ctx.body = json;
|
||||
ctx.body = res;
|
||||
};
|
||||
|
Reference in New Issue
Block a user