Increase buffer size

This commit is contained in:
Michael Bucari-Tovo 2022-05-14 04:10:54 -06:00
parent eeb4f4681a
commit 9d81c86c1b

View File

@ -221,7 +221,6 @@ namespace AaxDecrypter
var buff = new byte[DOWNLOAD_BUFF_SZ];
do
{
Thread.Sleep(10);
var bytesRead = _networkStream.Read(buff, 0, DOWNLOAD_BUFF_SZ);
_writeFile.Write(buff, 0, bytesRead);