fix: allow larger messages

This commit is contained in:
Anna 2023-11-18 11:04:04 -05:00
parent 01ee2e3535
commit a373ed8897
Signed by: anna
GPG Key ID: D0943384CD9F87D1
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ public static class Ext {
}
public static async Task<ResponseContainer> ReceiveMessage(this ClientWebSocket client) {
var bytes = new ArraySegment<byte>(new byte[2048]);
var bytes = new ArraySegment<byte>(new byte[64 * 1024]);
WebSocketReceiveResult result;
var i = 0;