fix(core): Fixes object property list not big enough exception (#358)

Bumps release version
This commit is contained in:
Kamron Batman 2020-12-22 13:08:46 -08:00 committed by GitHub
parent 90393fea2a
commit 0888ab9b86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -112,7 +112,7 @@ namespace Server
int strLength = m_Encoding.GetByteCount(arguments);
int length = _position + 6 + strLength;
if (length > _buffer.Length)
while (length > _buffer.Length)
{
Flush();
}