Fixed offsets

This commit is contained in:
Tristan B. Kildaire 2020-10-18 21:13:04 +02:00
parent 549d13936b
commit a10f546218
1 changed files with 2 additions and 2 deletions

View File

@ -168,8 +168,8 @@ public final class DClient
{
/* The member info */
ubyte len1 = resp[1];
ubyte len2 = resp[1+len1];
status = cast(string)resp[1+len1+len2..resp.length];
ubyte len2 = resp[1+len1+1];
status = cast(string)resp[1+len1+1+len2+1..resp.length];
}
else
{