ups. Fixed a syntax error.

This commit is contained in:
Robin Lambertz 2013-01-29 00:48:01 +00:00
parent f514480087
commit 5b67cec4e0

View File

@ -1212,7 +1212,7 @@ function parsePacket(buffer, isServer) {
read = types[fieldInfo.type][0]; read = types[fieldInfo.type][0];
if (!read) { if (!read) {
return { return {
error: "missing reader for data type: " + fieldInfo.type; error: "missing reader for data type: " + fieldInfo.type
} }
} }
readResults = read(buffer, size); readResults = read(buffer, size);