1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-04-02 07:19:29 -05:00

getJsonで256kbに制限

This commit is contained in:
syuilo 2022-12-25 15:02:47 +09:00
parent 225dbec8b9
commit 4b4cfa4270

View file

@ -104,6 +104,7 @@ export class HttpRequestService {
Accept: accept,
}, headers ?? {}),
timeout,
size: 1024 * 256,
});
return await res.json();