diff options
author | Stilic <63605602+Stilic@users.noreply.github.com> | 2021-09-08 13:34:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-08 13:34:37 +0200 |
commit | 6c5e3ee230a84cc6dbb4c8a19e9f958bc451b6a9 (patch) | |
tree | 0513f5476a9709069d4616fd4bdf48a53ec34fc2 | |
parent | Update User.ts (diff) | |
download | server-6c5e3ee230a84cc6dbb4c8a19e9f958bc451b6a9.tar.xz |
Fix upload size
-rw-r--r-- | api/src/Server.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/Server.ts b/api/src/Server.ts index 0f444f86..b9ca3fba 100644 --- a/api/src/Server.ts +++ b/api/src/Server.ts @@ -37,7 +37,7 @@ export class FosscordServer extends Server { await initEvent(); this.app.use(CORS); - this.app.use(BodyParser({ inflate: true, limit: 1024 * 1024 * 10 })); // 10MB + this.app.use(BodyParser({ inflate: true, limit: "10mb" })); const app = this.app; const api = Router(); // @ts-ignore |