Skip to content
Snippets Groups Projects
Commit 59ca0d21 authored by syuilo's avatar syuilo
Browse files

enhance(backend): APIパラメータサイズ上限を32kbから128kbに緩和

Fix #10574
parent 92356d02
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,7 @@
- iPhoneでウィジェットドロワーの「ウィジェットを編集」が押しにくい問題を修正
### Server
- APIパラメータサイズ上限を32kbから128kbに緩和
- プッシュ通知送信時のパフォーマンスを改善
- ローカルのカスタム絵文字のキャッシュが効いていなかった問題を修正
- アンテナのノート、チャンネルのノート、通知が正常に作成できないことがある問題を修正
......
......@@ -89,7 +89,7 @@ export class ApiServerService {
Params: { endpoint: string; },
Body: Record<string, unknown>,
Querystring: Record<string, unknown>,
}>('/' + endpoint.name, { bodyLimit: 1024 * 32 }, async (request, reply) => {
}>('/' + endpoint.name, { bodyLimit: 1024 * 128 }, async (request, reply) => {
if (request.method === 'GET' && !endpoint.meta.allowGet) {
reply.code(405);
reply.send();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment