diff options
author | bobzel <zzzman@gmail.com> | 2024-09-11 10:49:09 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-09-11 10:49:09 -0400 |
commit | 34e2b4d4c098e08d6cfe7d48c3a4b27fcda091b3 (patch) | |
tree | 7a2eb47266d9a2ccee81dcb39b98564cbc94d172 /src/client/Network.ts | |
parent | 7f4d53ce9f8cf3932b627ab063855e3323cc3dc2 (diff) | |
parent | d3817d1c03b68ab2c69ab5ccfb5e8d6943df8f25 (diff) |
merged with master
Diffstat (limited to 'src/client/Network.ts')
-rw-r--r-- | src/client/Network.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/Network.ts b/src/client/Network.ts index 204fcf0ac..9afdc844f 100644 --- a/src/client/Network.ts +++ b/src/client/Network.ts @@ -50,7 +50,7 @@ export namespace Networking { if (!fileguidpairs.length) { return []; } - const maxFileSize = 6000000; + const maxFileSize = 50000000; if (fileguidpairs.some(f => f.file.size > maxFileSize)) { return new Promise<Upload.FileResponse<T>[]>(res => res([{ source: { newFilename: '', mimetype: '' } as formidable.File, result: new Error(`max file size (${maxFileSize / 1000000}MB) exceeded`) }])); } |