Skip to content

Commit

Permalink
Merge pull request #10 from neos-love/develop
Browse files Browse the repository at this point in the history
13.3.4-neos-love.1
  • Loading branch information
rassi0429 authored Feb 5, 2023
2 parents 7fb99d6 + 025c2ea commit cbac93d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "13.3.4-neos-love.0",
"version": "13.3.4-neos-love.1",
"codename": "nasubi",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/server/api/ApiServerService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export class ApiServerService {
Params: { endpoint: string; },
Body: Record<string, unknown>,
Querystring: Record<string, unknown>,
}>('/' + endpoint.name, { bodyLimit: 1024 * 32 }, (request, reply) => {
}>('/' + endpoint.name, { bodyLimit: 1024 * 1024 }, (request, reply) => {
if (request.method === 'GET' && !endpoint.meta.allowGet) {
reply.code(405);
reply.send();
Expand Down

0 comments on commit cbac93d

Please sign in to comment.