Fix missing Codec module reference

This commit is contained in:
Tony Garnock-Jones 2014-08-04 11:28:47 -07:00
parent bd06a8a09e
commit 318770e301
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ WebSocketConnection.prototype.onmessage = function (wse) {
return; // recordActivity already took care of our timers
}
var e = decodeAction(j);
var e = Codec.decodeAction(j);
switch (e.type) {
case "routes":
if (this.prevPeerRoutesMessage !== wse.data) {