Skip to content

Commit 663a965

Browse files
author
soletan
committed
fixing typo in recent revision
1 parent eaa2ba1 commit 663a965

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/connection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ p.parseMessage = function() {
329329
msg.name = Connection.mapMsgNames[id];
330330
var fncName = "parse" + String.fromCharCode( id );
331331

332-
return fncName in this ? this[fncName]( msg );
332+
return fncName in this ? this[fncName]( msg ) : msg;
333333
}
334334
else
335335
throw new Error("Unrecognized message code " + id);

0 commit comments

Comments
 (0)