fix(core): Fixes object property list not big enough exception (#358)
Bumps release version
This commit is contained in:
parent
90393fea2a
commit
0888ab9b86
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue