bump chunksize to 12k

This commit is contained in:
Spencer Pogorzelski 2023-08-18 10:50:57 -07:00
parent 0b7ad50aab
commit bcbcd842c7

View file

@ -52,7 +52,7 @@ export type WSErrorPayload = {
message: string; message: string;
}; };
// WebRTC max is 16K, let's say 8K to be safe // WebRTC max is 16K, let's say 12K to be safe
export const MAX_CHUNK_SIZE = 8 * 1024; export const MAX_CHUNK_SIZE = 12 * 1024;
export { Transport } from "./Transport"; export { Transport } from "./Transport";