Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop

This commit is contained in:
syuilo 2023-02-09 17:54:14 +09:00
commit 6641b13b4c
4 changed files with 5 additions and 3 deletions

View file

@ -15,7 +15,7 @@ export const meta = {
requireCredential: true,
limit: {
duration: 60000,
duration: 30000,
max: 15,
},

View file

@ -337,7 +337,7 @@ export class ClientServerService {
const renderBase = async (reply: FastifyReply) => {
const meta = await this.metaService.fetch();
reply.header('Cache-Control', 'public, max-age=300');
reply.header('Cache-Control', 'public, max-age=30');
return await reply.view('base', {
img: meta.bannerUrl,
title: meta.name ?? 'Misskey',